Skip to content

Commit f9b1a63

Browse files
committed
Merge pull request fool2fish#43 from jcachuryb/patch-1
Append the missing brace.
2 parents 81f93ca + a96b090 commit f9b1a63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch03/3.5/src/lex2.l

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ word {letter}+
1212
if (starts_vowel(yytext))
1313
printf("%say", yytext);
1414
else
15-
printf("%s%cay", yytext+1, yytext[0]);
15+
printf("%s%cay", yytext+1, yytext[0]);}
1616
. { printf("%s", yytext); }
1717
%%
1818

0 commit comments

Comments
 (0)