Skip to content

Commit 1e0f697

Browse files
committed
expr: Fix cargo fmt of src/uu/expr/src/syntax_tree.rs
1 parent 8c27c7f commit 1e0f697

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/uu/expr/src/syntax_tree.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ fn check_posix_regex_errors(pattern: &str) -> ExprResult<()> {
210210
escaped_braces = escaped_braces
211211
.checked_sub(1)
212212
.ok_or(ExprError::UnmatchedClosingBrace)?;
213-
let mut repetition = repeating_pattern_text[..repeating_pattern_text.len() - 1]
214-
.splitn(2, ',');
213+
let mut repetition =
214+
repeating_pattern_text[..repeating_pattern_text.len() - 1].splitn(2, ',');
215215
match (
216216
repetition
217217
.next()

0 commit comments

Comments
 (0)