Commit 128f0528 authored by Ian Lance Taylor's avatar Ian Lance Taylor

Correct two web links, add missing semicolon after &lt.

R=r
DELTA=3  (0 added, 0 deleted, 3 changed)
OCL=15619
CL=15624
parent b676b0e1
...@@ -12,7 +12,7 @@ language, intended for programmers familiar with C or C++. It is not a comprehen ...@@ -12,7 +12,7 @@ language, intended for programmers familiar with C or C++. It is not a comprehen
guide to the language; at the moment the document closest to that is the draft guide to the language; at the moment the document closest to that is the draft
specification: specification:
/doc/go_lang.html /doc/go_spec.html
To check out the compiler and tools and be ready to run Go programs, see To check out the compiler and tools and be ready to run Go programs, see
...@@ -456,7 +456,7 @@ Here is the first function in "progs/sieve.go": ...@@ -456,7 +456,7 @@ Here is the first function in "progs/sieve.go":
--PROG progs/sieve.go /Send/ /^}/ --PROG progs/sieve.go /Send/ /^}/
The function "Generate" sends the sequence 2, 3, 4, 5, ... to its The function "Generate" sends the sequence 2, 3, 4, 5, ... to its
argument channel, "ch", using the binary communications operator "&lt-". argument channel, "ch", using the binary communications operator "<-".
Channels block, so if there's no recipient for the the value on "ch", Channels block, so if there's no recipient for the the value on "ch",
the send operation will wait until one becomes available. the send operation will wait until one becomes available.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment