aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-14 17:07:45 +0100
committerGitHub <noreply@github.com>2026-02-14 17:07:45 +0100
commit71cf7f59a923c8f2ece1dbe6e725225b1e68c313 (patch)
treeab0204354bea46e44b116af4eca9c34f7deca725
parent7be7ba825217c49fe579bf4444e8dd4c8e5ec02b (diff)
parent4fce910973c2557e1a148e2a57ef94ce4882c27e (diff)
Merge pull request #6277 from tpat7187/master
Minor Spelling mistake in Using error line
-rw-r--r--src/check_stmt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_stmt.cpp b/src/check_stmt.cpp
index bae95b7c7..8f17e66c4 100644
--- a/src/check_stmt.cpp
+++ b/src/check_stmt.cpp
@@ -2965,7 +2965,7 @@ gb_internal void check_stmt_internal(CheckerContext *ctx, Ast *node, u32 flags)
if ((feature_flags & OptInFeatureFlag_UsingStmt) == 0) {
ERROR_BLOCK();
error(node, "'using' has been disallowed as it is considered bad practice to use as a statement outside of immediate refactoring");
- error_line("\tIt you do require it for refactoring purposes or legacy code, it can be enabled on a per-file basis with '#+feature using-stmt'\n");
+ error_line("\tIf you do require it for refactoring purposes or legacy code, it can be enabled on a per-file basis with '#+feature using-stmt'\n");
}
for (Ast *expr : us->list) {