docs: update documentation examples to use uppercase IO instead of lowercase io

This commit is contained in:
Kyle Marek-Spartz
2014-02-16 17:28:56 +00:00
parent d2a5f3c79e
commit 3b9478908f
7 changed files with 24 additions and 24 deletions
+2 -2
View File
@@ -26,7 +26,7 @@ a top-level function in another module would be something like:
This leaves the question of how *do* you call top level functions in your own
module? I.e., how do we call foo here:
def foo(arg) { io.write("called foo!") }
def foo(arg) { IO.write("called foo!") }
class SomeClass {
bar {
@@ -37,7 +37,7 @@ module? I.e., how do we call foo here:
This is analogous to:
class SomeModule {
static foo(arg) { io.write("called foo!") }
static foo(arg) { IO.write("called foo!") }
class SomeClass {
bar {