chore: fix some comments

Signed-off-by: todaymoon <csgcgl@foxmail.com>
This commit is contained in:
todaymoon 2025-03-26 15:36:08 +08:00
parent 939d5f93eb
commit a8bfafe929
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ enum Parens {
///
/// e.g. `-(x + y + 0)` cannot be reduced to `-x + y`, as the behavior changes silently.
/// e.g. `1u64 + ((x + y + 0i32) as u64)` cannot be reduced to `1u64 + x + y as u64`, since
/// the the cast expression will not apply to the same expression.
/// the cast expression will not apply to the same expression.
/// e.g. `0 + if b { 1 } else { 2 } + if b { 3 } else { 4 }` cannot be reduced
/// to `if b { 1 } else { 2 } + if b { 3 } else { 4 }` where the `if` could be
/// interpreted as a statement. The same behavior happens for `match`, `loop`,