From: Alexandre Terrasa Date: Mon, 15 May 2017 23:16:11 +0000 (-0400) Subject: examples: rename Int::sleep from FFI examples to Int::sleep_seconds X-Git-Url: http://nitlanguage.org examples: rename Int::sleep from FFI examples to Int::sleep_seconds Signed-off-by: Alexandre Terrasa --- diff --git a/examples/extern_methods.nit b/examples/extern_methods.nit index c91cdb7..7ffc026 100644 --- a/examples/extern_methods.nit +++ b/examples/extern_methods.nit @@ -34,7 +34,7 @@ redef enum Int # System call to sleep for `self` seconds # # You can use the FFI to access any system functions, sometimes it's extremely simple. - fun sleep `{ + fun sleep_seconds `{ sleep(self); `}