1
0
mirror of https://github.com/golang/go synced 2024-11-24 10:20:01 -07:00

tutorial: fix one-word mistake in echo example

R=rsc, iant
CC=golang-dev
https://golang.org/cl/1567041
This commit is contained in:
Rob Pike 2010-06-05 12:06:18 -07:00
parent 64784801cd
commit f81abb9dd8
2 changed files with 2 additions and 2 deletions

View File

@ -221,7 +221,7 @@ are mandatory. The same applies to the <code>if</code> and <code>switch</code>
Later examples will show some other ways <code>for</code> can be written.
<p>
The body of the loop builds up the string <code>s</code> by appending (using <code>+=</code>)
the flags and separating spaces. After the loop, if the <code>-n</code> flag is not
the arguments and separating spaces. After the loop, if the <code>-n</code> flag is not
set, the program appends a newline. Finally, it writes the result.
<p>
Notice that <code>main.main</code> is a niladic function with no return type.

View File

@ -173,7 +173,7 @@ are mandatory. The same applies to the "if" and "switch" statements.
Later examples will show some other ways "for" can be written.
The body of the loop builds up the string "s" by appending (using "+=")
the flags and separating spaces. After the loop, if the "-n" flag is not
the arguments and separating spaces. After the loop, if the "-n" flag is not
set, the program appends a newline. Finally, it writes the result.
Notice that "main.main" is a niladic function with no return type.