1
0
forked from Mirror/wren

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

View File

@ -15,7 +15,7 @@ consider a module effectively a class. Consider:
}
class Inner {
io.write(_blah) // Does this declare field in Inner, or access Outer?
IO.write(_blah) // Does this declare field in Inner, or access Outer?
}
}