diff options
| author | Rob Phoenix <rob@robphoenix.com> | 2017-07-25 13:41:43 +0100 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2017-07-25 15:40:06 +0000 |
| commit | 0a50b6ab7c6ae842684a35d4a1f3d0c6906436da (patch) | |
| tree | 8b43e14cef152e3f810f30546122f3387ae79f1b | |
| parent | d1a15fa4af5ddb680c3d8876793f1723e1babea2 (diff) | |
| download | golang-id-tour-0a50b6ab7c6ae842684a35d4a1f3d0c6906436da.tar.xz | |
content: capitalise the script in JavaScript
Fixes golang/tour#27
Change-Id: Idcaf9b2ad7f08ea20b7bd1f7f1ff600cb43e2d55
Reviewed-on: https://go-review.googlesource.com/51070
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
| -rw-r--r-- | content/flowcontrol.article | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/flowcontrol.article b/content/flowcontrol.article index 9720b34..28453a5 100644 --- a/content/flowcontrol.article +++ b/content/flowcontrol.article @@ -20,7 +20,7 @@ statement. The loop will stop iterating once the boolean condition evaluates to `false`. -_Note_: Unlike other languages like C, Java, or Javascript there are no parentheses +_Note_: Unlike other languages like C, Java, or JavaScript there are no parentheses surrounding the three components of the `for` statement and the braces `{`}` are always required. @@ -28,7 +28,7 @@ always required. * For continued -The init and post statement are optional. +The init and post statement are optional. .play flowcontrol/for-continued.go |
