Skip to content

Commit

Permalink
Auto merge of #117862 - SpeedReach:patch-1, r=nnethercote
Browse files Browse the repository at this point in the history
Fix comment in compiler/rustc_ast/src/token.rs.

Gt -> Greater than -> `>`
Ge -> Greater equal -> `>=`
  • Loading branch information
bors committed Nov 13, 2023
2 parents b5cdb96 + 8c0ae83 commit c225c45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/rustc_ast/src/token.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ pub enum TokenKind {
EqEq,
/// `!=`
Ne,
/// `>`
Ge,
/// `>=`
Ge,
/// `>`
Gt,
/// `&&`
AndAnd,
Expand Down

0 comments on commit c225c45

Please sign in to comment.