diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2018-12-12 13:48:58 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-12-12 13:48:58 +0900 |
| commit | ec812c646fa9740e6309712065c26e0563795178 (patch) | |
| tree | c47e74db162b4800167ab2378742e22f4a9ef894 /mrbgems/mruby-sleep/example | |
| parent | 730b9253321f422a1423f42c81b06dc5ba7fb546 (diff) | |
| parent | 59651f43ad30dc48e2872b950697562d4a14e62a (diff) | |
| download | mruby-ec812c646fa9740e6309712065c26e0563795178.tar.gz mruby-ec812c646fa9740e6309712065c26e0563795178.zip | |
Merge pull request #4185 from icm7216/fix-sleep-example
Fix sleep example
Diffstat (limited to 'mrbgems/mruby-sleep/example')
| -rw-r--r-- | mrbgems/mruby-sleep/example/sleep.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-sleep/example/sleep.rb b/mrbgems/mruby-sleep/example/sleep.rb index dfe86af27..e5acea3b2 100644 --- a/mrbgems/mruby-sleep/example/sleep.rb +++ b/mrbgems/mruby-sleep/example/sleep.rb @@ -1,3 +1,3 @@ -Sleep::sleep(10) -Sleep::usleep(10000) +sleep(10) +usleep(10000) |
