From d2074e73cd53239beb225e72f912bc84e18f0a7b Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Mon, 11 Mar 2024 18:48:44 -0700 Subject: [PATCH] Fix the syntax example comment for `RightSquare` in the tokenizer --- compiler-core/src/parse/token.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-core/src/parse/token.rs b/compiler-core/src/parse/token.rs index 2fc3f20c4d4..77b9ceddef1 100644 --- a/compiler-core/src/parse/token.rs +++ b/compiler-core/src/parse/token.rs @@ -15,7 +15,7 @@ pub enum Token { LeftParen, // ( RightParen, // ) LeftSquare, // [ - RightSquare, // } + RightSquare, // ] LeftBrace, // { RightBrace, // } // Int Operators