Punctuation choices

This commit is contained in:
Kyle Marek-Spartz
2014-02-16 21:56:51 -06:00
parent 6d9842b148
commit 4eead2b611
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ never write `;` unless you want to cram a bunch of statements on one line.
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
simple rule. It ignores a newline following any token that can't end a
simple rule: It ignores a newline following any token that can't end a
statement. Specifically, that means any of these:
:::dart