aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortpat7187 <corranpaterson@live.com>2026-02-14 15:51:03 +0000
committertpat7187 <corranpaterson@live.com>2026-02-14 15:51:03 +0000
commit4fce910973c2557e1a148e2a57ef94ce4882c27e (patch)
treeab0204354bea46e44b116af4eca9c34f7deca725
parent7be7ba825217c49fe579bf4444e8dd4c8e5ec02b (diff)
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) {