summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-29 13:29:44 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-29 13:29:44 +0000
commitb881747bbd8a41510cfe5d7aa073b1dd0442b9f5 (patch)
tree88e22333f346853b1fb7258c43e661a82886dd3c /parse.y
parent13d53f9ae9cf4b150c2e4ec1709701ccefc91126 (diff)
* parse.y: fix minor typo. [ci skip][fix GH-1038].
Patch by @ltratt. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 92cc25824c..38153e9ac1 100644
--- a/parse.y
+++ b/parse.y
@@ -2892,7 +2892,7 @@ primary : literal
/*
* for a, b, c in e
* #=>
- * e.each{|*x| a, b, c = x
+ * e.each{|*x| a, b, c = x}
*
* for a in e
* #=>