Method name typo in a Tk sample

* ext/tk/sample/tktextio.rb: trancate => truncate

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53341 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
a_matsuda 2015-12-27 09:59:13 +00:00
parent 87c817fa6f
commit 9e04d1fbf1

View File

@ -836,7 +836,7 @@ class TkTextIO < TkText
self
end
def trancate(len)
def truncate(len)
delete("1.0 + #{len} char", :end)
0
end