Update a bunch of io to IO in docs.

This commit is contained in:
Kyle Marek-Spartz
2014-02-16 11:28:56 -06:00
parent 719139a446
commit 3f96637274
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 {