summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Forsyth <charles.forsyth@gmail.com>2017-05-14 22:31:10 +0100
committerCharles Forsyth <charles.forsyth@gmail.com>2017-05-14 22:31:10 +0100
commit01b678530faf154a6b639a25f0c58f7cf35441ec (patch)
tree23972b58c32b4538ff12fe306380a61fa7c0354d
parent02ed2dd7ed0e81f2e99aa3b52f1eccb59a3140f4 (diff)
missing t in error message
-rw-r--r--appl/cmd/limbo/limbo.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/appl/cmd/limbo/limbo.y b/appl/cmd/limbo/limbo.y
index 2f7d3ba8..4eb4af8a 100644
--- a/appl/cmd/limbo/limbo.y
+++ b/appl/cmd/limbo/limbo.y
@@ -655,13 +655,13 @@ ftype : nids ':' type
{
$$ = mkids($1.src, enter("junk", 0), $3, nil);
$$.store = Darg;
- yyerror("illegal argument declaraion");
+ yyerror("illegal argument declaration");
}
| idterms ':' adtk
{
$$ = mkids($1.src, enter("junk", 0), $3, nil);
$$.store = Darg;
- yyerror("illegal argument declaraion");
+ yyerror("illegal argument declaration");
}
;