From 99d6c58971e1bbd1ca119e40731c4ca182eebc6c Mon Sep 17 00:00:00 2001 From: Alexander Goussas Date: Fri, 24 Mar 2023 15:37:17 -0500 Subject: [PATCH] Fix typo in warning message in parser --- src/parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.cpp b/src/parser.cpp index 07afc56d6..86f955254 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -1411,7 +1411,7 @@ gb_internal Token expect_operator(AstFile *f) { LIT(p)); } if (f->curr_token.kind == Token_Ellipsis) { - syntax_warning(f->curr_token, "'..' for ranges has now be deprecated, prefer '..='"); + syntax_warning(f->curr_token, "'..' for ranges has now been deprecated, prefer '..='"); f->tokens[f->curr_token_index].flags |= TokenFlag_Replace; }