summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Forsyth <charles.forsyth@gmail.com>2017-05-14 22:27:21 +0100
committerCharles Forsyth <charles.forsyth@gmail.com>2017-05-14 22:27:21 +0100
commitb36e4b4f757d5a508c1c74c5c190bc4af70d47be (patch)
tree67c9520f60f41432b13e7f25656bdb70f0d9d75d
parent8823998c509302a526d8711095f664dd06997234 (diff)
missing t in error message
-rw-r--r--limbo/limbo.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/limbo/limbo.y b/limbo/limbo.y
index a6ccab90..f869f01c 100644
--- a/limbo/limbo.y
+++ b/limbo/limbo.y
@@ -582,13 +582,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");
}
;