Commit a68592a4 authored by Russ Cox's avatar Russ Cox

excise some internal references.

R=r
DELTA=209  (65 added, 114 deleted, 30 changed)
OCL=35718
CL=35721
parent 68c921e2
...@@ -1696,8 +1696,10 @@ used by both <code>TestEncoder</code> and <code>TestDecoder</code>. ...@@ -1696,8 +1696,10 @@ used by both <code>TestEncoder</code> and <code>TestDecoder</code>.
<p> <p>
This data-driven style dominates in the Go package tests. This data-driven style dominates in the Go package tests.
<!--
<br> <br>
<!-- search for for.*range here --> link to go code search for 'for.*range' here
-->
</p> </p>
<h3 id="reflect.DeepEqual">Use reflect.DeepEqual to compare complex values</h3> <h3 id="reflect.DeepEqual">Use reflect.DeepEqual to compare complex values</h3>
......
...@@ -57,7 +57,7 @@ Next up, here's a version of the Unix utility <code>echo(1)</code>: ...@@ -57,7 +57,7 @@ Next up, here's a version of the Unix utility <code>echo(1)</code>:
<p> <p>
07 import ( 07 import (
08 &quot;os&quot;; 08 &quot;os&quot;;
09 &quot;flag&quot;; 09 &quot;flag&quot;; // command line option parser
10 ) 10 )
<p> <p>
12 var n_flag = flag.Bool(&quot;n&quot;, false, &quot;don't print final newline&quot;) 12 var n_flag = flag.Bool(&quot;n&quot;, false, &quot;don't print final newline&quot;)
......
...@@ -6,7 +6,7 @@ package main ...@@ -6,7 +6,7 @@ package main
import ( import (
"os"; "os";
"flag"; "flag"; // command line option parser
) )
var n_flag = flag.Bool("n", false, "don't print final newline") var n_flag = flag.Bool("n", false, "don't print final newline")
......
...@@ -413,8 +413,7 @@ void lock(Lock*); ...@@ -413,8 +413,7 @@ void lock(Lock*);
void unlock(Lock*); void unlock(Lock*);
/* /*
* sleep and wakeup on one-time events, like * sleep and wakeup on one-time events.
* Notification (but shorter to type).
* before any calls to notesleep or notewakeup, * before any calls to notesleep or notewakeup,
* must call noteclear to initialize the Note. * must call noteclear to initialize the Note.
* then, any number of threads can call notesleep * then, any number of threads can call notesleep
......
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