Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
Gt => Greater than => `>`
Ge => Greater equal => `>=`
  • Loading branch information
brian030128 authored Nov 13, 2023
1 parent ea1e5cc commit 8c0ae83
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 8c0ae83

Please sign in to comment.