summaryrefslogtreecommitdiff
path: root/perly.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-04-26 12:39:53 -0600
committerKarl Williamson <khw@cpan.org>2019-04-29 15:51:51 -0600
commit968f7b329000c96c80484f3c449e7ee8c94ba2e3 (patch)
treee96f9b921a3bb3c6ba2036657e6435fdf5039539 /perly.c
parent721db7b0c114e871455bdf98c92939bd30bdc662 (diff)
downloadperl-968f7b329000c96c80484f3c449e7ee8c94ba2e3.tar.gz
perly.c: Fix typo in comment
Diffstat (limited to 'perly.c')
-rw-r--r--perly.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perly.c b/perly.c
index 9911a8ad19..41978fa787 100644
--- a/perly.c
+++ b/perly.c
@@ -355,7 +355,7 @@ Perl_yyparse (pTHX_ int gramtype)
yytoken = YYTRANSLATE(NATIVE_TO_UNI(parser->yychar));
}
- /* make sure no-ones changed yychar since the last call to yylex */
+ /* make sure no-one's changed yychar since the last call to yylex */
assert(yytoken == YYTRANSLATE(NATIVE_TO_UNI(parser->yychar)));
YYDSYMPRINTF("lookahead token is", yytoken, &parser->yylval);