Auto merge of #117862 - SpeedReach:patch-1, r=nnethercote

Fix comment in compiler/rustc_ast/src/token.rs.

Gt -> Greater than -> `>`
Ge -> Greater equal -> `>=`
This commit is contained in:
bors 2023-11-13 08:14:01 +00:00
commit c225c45bce
1 changed files with 2 additions and 2 deletions

View File

@ -238,9 +238,9 @@ pub enum TokenKind {
EqEq,
/// `!=`
Ne,
/// `>`
Ge,
/// `>=`
Ge,
/// `>`
Gt,
/// `&&`
AndAnd,