From b881747bbd8a41510cfe5d7aa073b1dd0442b9f5 Mon Sep 17 00:00:00 2001 From: eregon Date: Tue, 29 Sep 2015 13:29:44 +0000 Subject: [PATCH] * 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 --- ChangeLog | 5 +++++ parse.y | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 995700c112..a40d29994d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Sep 29 22:27:50 2015 Benoit Daloze + + * parse.y: fix minor typo. [ci skip][fix GH-1038]. + Patch by @ltratt. + Tue Sep 29 16:53:53 2015 Martin Duerst * tool/unicode_norm_gen.tmpl, lib/unicode_normalize/tables.rb: 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 * #=>