Fix comment

Gt => Greater than => `>`
Ge => Greater equal => `>=`
This commit is contained in:
Sleep_AllDay 2023-11-13 13:15:55 +08:00 committed by GitHub
parent ea1e5cc91f
commit 8c0ae83723
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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