aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-07-02 10:45:22 +0100
committerGinger Bill <bill@gingerbill.org>2017-07-02 10:45:22 +0100
commit96d32680fe1b83ec943382efb8e91c7029f0621f (patch)
tree8e078539713063cb743f1a2c7658f8aa57051180 /src/parser.cpp
parentd782b3d21d55a78fb538aa8b6421ae177235f037 (diff)
Allow overloading of polymorphic procedures
Diffstat (limited to 'src/parser.cpp')
-rw-r--r--src/parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.cpp b/src/parser.cpp
index 45e733353..5ad4a410b 100644
--- a/src/parser.cpp
+++ b/src/parser.cpp
@@ -4022,7 +4022,7 @@ AstNode *parse_for_stmt(AstFile *f) {
index = cond->AssignStmt.lhs[1];
break;
default:
- error(cond, "Expected at 1 or 2 identifiers");
+ error(cond, "Expected either 1 or 2 identifiers");
return ast_bad_stmt(f, token, f->curr_token);
}