diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-02-23 22:22:56 +0000 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-02-23 22:22:56 +0000 |
| commit | a982c51c30141b88fd905c02225c2a7efdb39137 (patch) | |
| tree | 3aa5dd201a9fe386cb3f88ad284d8d736d7b5d1a /src/parser.c | |
| parent | 047c0e4bcc415a1f0e7b55afd57900319e43dbef (diff) | |
Fix minor bugs in IR for slices
Diffstat (limited to 'src/parser.c')
| -rw-r--r-- | src/parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.c b/src/parser.c index 289e80ba4..f14f37599 100644 --- a/src/parser.c +++ b/src/parser.c @@ -3475,7 +3475,7 @@ AstNode *parse_stmt(AstFile *f) { syntax_error(token, "#include is not a valid import declaration kind. Use #load instead"); s = ast_bad_stmt(f, token, f->curr_token); } else { - syntax_error(token, "Unknown tag used: `%.*s`", LIT(tag)); + syntax_error(token, "Unknown tag directive used: `%.*s`", LIT(tag)); s = ast_bad_stmt(f, token, f->curr_token); } |