ruby-changes:39899
From: eregon <ko1@a...>
Date: Tue, 29 Sep 2015 22:30:05 +0900 (JST)
Subject: [ruby-changes:39899] eregon:r51980 (trunk): * parse.y: fix minor typo. [ci skip][fix GH-1038].
eregon 2015-09-29 22:29:44 +0900 (Tue, 29 Sep 2015) New Revision: 51980 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=51980 Log: * parse.y: fix minor typo. [ci skip][fix GH-1038]. Patch by @ltratt. Modified files: trunk/ChangeLog trunk/parse.y Index: ChangeLog =================================================================== --- ChangeLog (revision 51979) +++ ChangeLog (revision 51980) @@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Tue Sep 29 22:27:50 2015 Benoit Daloze <eregontp@g...> + + * parse.y: fix minor typo. [ci skip][fix GH-1038]. + Patch by @ltratt. + Tue Sep 29 16:53:53 2015 Martin Duerst <duerst@i...> * tool/unicode_norm_gen.tmpl, lib/unicode_normalize/tables.rb: Index: parse.y =================================================================== --- parse.y (revision 51979) +++ parse.y (revision 51980) @@ -2892,7 +2892,7 @@ primary : literal https://github.com/ruby/ruby/blob/trunk/parse.y#L2892 /* * for a, b, c in e * #=> - * e.each{|*x| a, b, c = x + * e.each{|*x| a, b, c = x} * * for a in e * #=> -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/