* 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
This commit is contained in:
eregon 2015-09-29 13:29:44 +00:00
parent 13d53f9ae9
commit b881747bbd
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Tue Sep 29 22:27:50 2015 Benoit Daloze <eregontp@gmail.com>
* parse.y: fix minor typo. [ci skip][fix GH-1038].
Patch by @ltratt.
Tue Sep 29 16:53:53 2015 Martin Duerst <duerst@it.aoyama.ac.jp>
* tool/unicode_norm_gen.tmpl, lib/unicode_normalize/tables.rb:

View File

@ -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
* #=>