docs: clarify UTF-8 indexing explanation and fix punctuation in string and values documentation

This commit is contained in:
Bob Nystrom
2015-03-28 03:59:15 +00:00
parent c3d0b66630
commit c4a7ad9d02
2 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -63,7 +63,7 @@ A `\x` followed by two hex digits specifies a single unencoded byte:
IO.print("\x48\x69\x2e") // "Hi."
Strings are objects of class [String](core/string.html).
Strings are instances of class [String](core/string.html).
## Ranges
@@ -92,7 +92,7 @@ example:
var slice = list[1..3]
IO.print(slice) // ["b", "c", "d"]
Their class is [Range](core/range.html)
Their class is [Range](core/range.html).
## Null