Skip to content

Commit c225c45

Browse files
committed
Auto merge of #117862 - SpeedReach:patch-1, r=nnethercote
Fix comment in compiler/rustc_ast/src/token.rs. Gt -> Greater than -> `>` Ge -> Greater equal -> `>=`
2 parents b5cdb96 + 8c0ae83 commit c225c45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_ast/src/token.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -238,9 +238,9 @@ pub enum TokenKind {
238238
EqEq,
239239
/// `!=`
240240
Ne,
241-
/// `>`
242-
Ge,
243241
/// `>=`
242+
Ge,
243+
/// `>`
244244
Gt,
245245
/// `&&`
246246
AndAnd,

0 commit comments

Comments
 (0)