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

Typo in Tk samples

* ext/tk/sample/demos-en/goldberg.rb: miliseconds => milliseconds
* ext/tk/sample/demos-jp/goldberg.rb: miliseconds => milliseconds

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53339 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
a_matsuda 2015-12-27 09:58:48 +00:00
parent 2cf20887af
commit e04b5c3e23
2 changed files with 8 additions and 8 deletions

View file

@ -357,7 +357,7 @@ class TkGoldberg_Demo
end
def go(who = nil)
now = Tk::Clock.clicks(:miliseconds)
now = Tk::Clock.clicks(:milliseconds)
if who # Start here for debugging
@S['active'] = [who]
@S['mode'].value = :MGO
@ -367,7 +367,7 @@ class TkGoldberg_Demo
n = next_step if @S['mode'].to_sym != :MPAUSE
@S['mode'].value = :MPAUSE if @S['mode'].to_sym == :MSSTEP # Single step
@S['mode'].value = :MSSTEP if @S['mode'].to_sym == :MBSTEP && n # big step
elapsed = Tk::Clock.clicks(:miliseconds) - now
elapsed = Tk::Clock.clicks(:milliseconds) - now
delay = @speed[@S['speed'].to_i] - elapsed
delay = 1 if delay <= 0
return delay
@ -1773,10 +1773,10 @@ class TkGoldberg_Demo
step = get_step(25, step)
if step == 0
@XY['25'] = Tk::Clock.clicks(:miliseconds)
@XY['25'] = Tk::Clock.clicks(:milliseconds)
return 1
end
elapsed = Tk::Clock.clicks(:miliseconds) - @XY['25']
elapsed = Tk::Clock.clicks(:milliseconds) - @XY['25']
return 1 if elapsed < 5000
return 2
end

View file

@ -359,7 +359,7 @@ class TkGoldberg_Demo
end
def go(who = nil)
now = Tk::Clock.clicks(:miliseconds)
now = Tk::Clock.clicks(:milliseconds)
if who # Start here for debugging
@S['active'] = [who]
@S['mode'].value = :MGO
@ -369,7 +369,7 @@ class TkGoldberg_Demo
n = next_step if @S['mode'].to_sym != :MPAUSE
@S['mode'].value = :MPAUSE if @S['mode'].to_sym == :MSSTEP # Single step
@S['mode'].value = :MSSTEP if @S['mode'].to_sym == :MBSTEP && n # big step
elapsed = Tk::Clock.clicks(:miliseconds) - now
elapsed = Tk::Clock.clicks(:milliseconds) - now
delay = @speed[@S['speed'].to_i] - elapsed
delay = 1 if delay <= 0
return delay
@ -1777,10 +1777,10 @@ class TkGoldberg_Demo
step = get_step(25, step)
if step == 0
@XY['25'] = Tk::Clock.clicks(:miliseconds)
@XY['25'] = Tk::Clock.clicks(:milliseconds)
return 1
end
elapsed = Tk::Clock.clicks(:miliseconds) - @XY['25']
elapsed = Tk::Clock.clicks(:milliseconds) - @XY['25']
return 1 if elapsed < 5000
return 2
end