1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

fix indent [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2014-11-27 13:51:01 +00:00
parent 1c6f4943b9
commit 493d105779

View file

@ -24,7 +24,7 @@ Thu Nov 27 19:04:50 2014 Koichi Sasada <ko1@atdot.net>
For example, the following program
def foo(k1: 1); end # line 1
foo(k2: 2) # line 2
foo(k2: 2) # line 2
causes "unknown keyword: k2 (ArgumentError)".
Before this patch, the backtrace location is only line 2.