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
@@ -38,8 +38,8 @@ never write `;` unless you want to cram a bunch of statements on one line.
:::dart
// Two statements:
io.write("hi")
io.write("bye")
IO.write("hi")
IO.write("bye")
Sometimes, though, a statement doesn't fit on a single line and treating the
newline as a semicolon would trip things up. To handle that, Wren has a very