diff options
| author | HAYASHI Kentaro <[email protected]> | 2016-01-31 00:48:12 +0900 |
|---|---|---|
| committer | HAYASHI Kentaro <[email protected]> | 2016-01-31 00:48:12 +0900 |
| commit | 9442cb9652e6fbb6acf8a9940e74a169810276f7 (patch) | |
| tree | ee785a1f21b471a61459e93b07b9e93f5d7853aa | |
| parent | c35a25c51e2e576d12ebd155397e8dc91e3759d5 (diff) | |
| download | mruby-9442cb9652e6fbb6acf8a9940e74a169810276f7.tar.gz mruby-9442cb9652e6fbb6acf8a9940e74a169810276f7.zip | |
Fix a typo
su ported ->
supported
^
| -rw-r--r-- | mrbgems/mruby-compiler/core/parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-compiler/core/parse.y b/mrbgems/mruby-compiler/core/parse.y index 301d1bf65..5351c32f3 100644 --- a/mrbgems/mruby-compiler/core/parse.y +++ b/mrbgems/mruby-compiler/core/parse.y @@ -1300,7 +1300,7 @@ stmt : keyword_alias fsym {p->lstate = EXPR_FNAME;} fsym } | keyword_END '{' compstmt '}' { - yyerror(p, "END not suported"); + yyerror(p, "END not supported"); $$ = new_postexe(p, $3); } | command_asgn |
