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:
parent
2cf20887af
commit
e04b5c3e23
2 changed files with 8 additions and 8 deletions
|
@ -357,7 +357,7 @@ class TkGoldberg_Demo
|
||||||
end
|
end
|
||||||
|
|
||||||
def go(who = nil)
|
def go(who = nil)
|
||||||
now = Tk::Clock.clicks(:miliseconds)
|
now = Tk::Clock.clicks(:milliseconds)
|
||||||
if who # Start here for debugging
|
if who # Start here for debugging
|
||||||
@S['active'] = [who]
|
@S['active'] = [who]
|
||||||
@S['mode'].value = :MGO
|
@S['mode'].value = :MGO
|
||||||
|
@ -367,7 +367,7 @@ class TkGoldberg_Demo
|
||||||
n = next_step if @S['mode'].to_sym != :MPAUSE
|
n = next_step if @S['mode'].to_sym != :MPAUSE
|
||||||
@S['mode'].value = :MPAUSE if @S['mode'].to_sym == :MSSTEP # Single step
|
@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
|
@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 = @speed[@S['speed'].to_i] - elapsed
|
||||||
delay = 1 if delay <= 0
|
delay = 1 if delay <= 0
|
||||||
return delay
|
return delay
|
||||||
|
@ -1773,10 +1773,10 @@ class TkGoldberg_Demo
|
||||||
step = get_step(25, step)
|
step = get_step(25, step)
|
||||||
|
|
||||||
if step == 0
|
if step == 0
|
||||||
@XY['25'] = Tk::Clock.clicks(:miliseconds)
|
@XY['25'] = Tk::Clock.clicks(:milliseconds)
|
||||||
return 1
|
return 1
|
||||||
end
|
end
|
||||||
elapsed = Tk::Clock.clicks(:miliseconds) - @XY['25']
|
elapsed = Tk::Clock.clicks(:milliseconds) - @XY['25']
|
||||||
return 1 if elapsed < 5000
|
return 1 if elapsed < 5000
|
||||||
return 2
|
return 2
|
||||||
end
|
end
|
||||||
|
|
|
@ -359,7 +359,7 @@ class TkGoldberg_Demo
|
||||||
end
|
end
|
||||||
|
|
||||||
def go(who = nil)
|
def go(who = nil)
|
||||||
now = Tk::Clock.clicks(:miliseconds)
|
now = Tk::Clock.clicks(:milliseconds)
|
||||||
if who # Start here for debugging
|
if who # Start here for debugging
|
||||||
@S['active'] = [who]
|
@S['active'] = [who]
|
||||||
@S['mode'].value = :MGO
|
@S['mode'].value = :MGO
|
||||||
|
@ -369,7 +369,7 @@ class TkGoldberg_Demo
|
||||||
n = next_step if @S['mode'].to_sym != :MPAUSE
|
n = next_step if @S['mode'].to_sym != :MPAUSE
|
||||||
@S['mode'].value = :MPAUSE if @S['mode'].to_sym == :MSSTEP # Single step
|
@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
|
@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 = @speed[@S['speed'].to_i] - elapsed
|
||||||
delay = 1 if delay <= 0
|
delay = 1 if delay <= 0
|
||||||
return delay
|
return delay
|
||||||
|
@ -1777,10 +1777,10 @@ class TkGoldberg_Demo
|
||||||
step = get_step(25, step)
|
step = get_step(25, step)
|
||||||
|
|
||||||
if step == 0
|
if step == 0
|
||||||
@XY['25'] = Tk::Clock.clicks(:miliseconds)
|
@XY['25'] = Tk::Clock.clicks(:milliseconds)
|
||||||
return 1
|
return 1
|
||||||
end
|
end
|
||||||
elapsed = Tk::Clock.clicks(:miliseconds) - @XY['25']
|
elapsed = Tk::Clock.clicks(:milliseconds) - @XY['25']
|
||||||
return 1 if elapsed < 5000
|
return 1 if elapsed < 5000
|
||||||
return 2
|
return 2
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue