From fda5e85e2be21c36239c7abe71e3b9daa62192c9 Mon Sep 17 00:00:00 2001 From: kazu Date: Thu, 11 Jan 2018 13:56:05 +0000 Subject: [PATCH] Fix a typo [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61771 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.y b/parse.y index 8ffb217fa0..e9efc44ef7 100644 --- a/parse.y +++ b/parse.y @@ -203,7 +203,7 @@ struct parser_params { enum lex_state_e state; /* track the nest level of any parens "()[]{}" */ int paren_nest; - /* keep paren_nest at the beginning of lambda "->" to detect tLAMBEG and keyowrd_do_LAMBDA */ + /* keep paren_nest at the beginning of lambda "->" to detect tLAMBEG and keyword_do_LAMBDA */ int lpar_beg; /* track the nest level of only braces "{}" */ int brace_nest;