Skip to content

Commit

Permalink
expr: add missing word to comment
Browse files Browse the repository at this point in the history
  • Loading branch information
cakebaker authored Oct 15, 2023
1 parent 46b8b41 commit 6ef5b27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uu/expr/src/tokens.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ fn maybe_dump_tokens_acc(tokens_acc: &[(usize, Token)]) {
}

fn push_token_if_not_escaped(acc: &mut Vec<(usize, Token)>, tok_idx: usize, token: Token, s: &str) {
// `+` may escaped such as `expr + 1` and `expr 1 + + 1`
// `+` may be escaped such as `expr + 1` and `expr 1 + + 1`
let prev_is_plus = match acc.last() {
None => false,
Some(t) => t.1.is_infix_plus(),
Expand Down

0 comments on commit 6ef5b27

Please sign in to comment.