diff options
author | Takashi Tamura <tamuratak@users.noreply.github.com> | 2021-02-13 12:07:42 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2021-02-15 10:46:29 +0900 |
commit | 990b54054d341ea41b75f4abdbead880a47ec46b (patch) | |
tree | 6ce1851da5ccabecda88f19840475e958d303a53 | |
parent | dbeddfb0b20d40871f3850f48219a9cf1fade26c (diff) |
Add a missing semicolon.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4180
-rw-r--r-- | parse.y | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1765,7 +1765,7 @@ expr_value_do : {COND_PUSH(1);} expr_value do {COND_POP();} { $$ = $2; } - + ; command_call : command | block_command |