diff options
| author | icm7216 <[email protected]> | 2018-12-12 00:52:07 +0900 |
|---|---|---|
| committer | icm7216 <[email protected]> | 2018-12-12 00:52:07 +0900 |
| commit | 74c54022118578c65a7ad97a23bb68599986be65 (patch) | |
| tree | ebf569704fb77f0a4c40c0c40a7faea7df502977 | |
| parent | 730b9253321f422a1423f42c81b06dc5ba7fb546 (diff) | |
| download | mruby-74c54022118578c65a7ad97a23bb68599986be65.tar.gz mruby-74c54022118578c65a7ad97a23bb68599986be65.zip | |
Sleep module is undefined. Remove module name.
| -rw-r--r-- | mrbgems/mruby-sleep/README.md | 4 | ||||
| -rw-r--r-- | mrbgems/mruby-sleep/example/sleep.rb | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mrbgems/mruby-sleep/README.md b/mrbgems/mruby-sleep/README.md index 4543c49cf..a4ecba7d7 100644 --- a/mrbgems/mruby-sleep/README.md +++ b/mrbgems/mruby-sleep/README.md @@ -15,8 +15,8 @@ end ## example ```ruby -Sleep::sleep(10) -Sleep::usleep(10000) +sleep(10) +usleep(10000) ``` # License 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) |
