diff options
| author | Simon Chiang <[email protected]> | 2021-04-23 11:18:12 -0600 |
|---|---|---|
| committer | Amir Rajan <[email protected]> | 2021-05-26 16:07:47 -0500 |
| commit | 0f348fa240ff2bb0fa508368411e6d1fc73e167a (patch) | |
| tree | e3466e15e191026cc5f2c1debde1a4bd21b5b05a /samples/00_learn_ruby_optional | |
| parent | 575b8ce2722d23355b137905e39aaaed2436b0ce (diff) | |
| download | dragonruby-game-toolkit-contrib-0f348fa240ff2bb0fa508368411e6d1fc73e167a.tar.gz dragonruby-game-toolkit-contrib-0f348fa240ff2bb0fa508368411e6d1fc73e167a.zip | |
Fix spelling separator not seperator
Diffstat (limited to 'samples/00_learn_ruby_optional')
| -rw-r--r-- | samples/00_learn_ruby_optional/00_beginner_ruby_primer/app/main.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/samples/00_learn_ruby_optional/00_beginner_ruby_primer/app/main.rb b/samples/00_learn_ruby_optional/00_beginner_ruby_primer/app/main.rb index 6822cf3..711ca74 100644 --- a/samples/00_learn_ruby_optional/00_beginner_ruby_primer/app/main.rb +++ b/samples/00_learn_ruby_optional/00_beginner_ruby_primer/app/main.rb @@ -83,8 +83,8 @@ def tick_reset_button end end -def seperator - @seperator = "=" * 80 +def separator + @separator = "=" * 80 end def tick_intro @@ -286,11 +286,11 @@ def queue_message message $gtk.args.state.messages << message last_three = [$gtk.console.log[-3], $gtk.console.log[-2], $gtk.console.log[-1]].reject_nil $gtk.console.log.clear - puts seperator + puts separator $gtk.console.log += last_three - puts seperator + puts separator puts message - puts seperator + puts separator end def console_has? message |
