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

* typo bug

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4303 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2003-08-03 10:53:09 +00:00
parent 685082d06f
commit ebe22aafa2

View file

@ -4532,7 +4532,7 @@ class TkScale<TkWindow
elsif slot.kind_of?(Hash) && elsif slot.kind_of?(Hash) &&
(slot.key?('command') || slot.key?(:command)) (slot.key?('command') || slot.key?(:command))
slot = _symbolkey2str(slot) slot = _symbolkey2str(slot)
slot['command'] = __wrap_command_arg(slot.delete('command')) slot['command'] = _wrap_command_arg(slot.delete('command'))
end end
super(slot, value) super(slot, value)
end end