Skip to content

Commit 93e8e70

Browse files
committed
all: fixed a handful of typos
Change-Id: Ib0683f27b44e2f107cca7a8dcc01d230cbcd5700 Reviewed-on: https://go-review.googlesource.com/23404 Reviewed-by: Alan Donovan <[email protected]>
1 parent a640d95 commit 93e8e70

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

doc/install-source.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,19 @@ <h2 id="introduction">Introduction</h2>
6363
<code>arm64</code> (<code>AArch64</code>)
6464
</dt>
6565
<dd>
66-
Supports Linux and Darwin binaries. New in 1.5 and not as well excercised as other ports.
66+
Supports Linux and Darwin binaries. New in 1.5 and not as well exercised as other ports.
6767
</dd>
6868
<dt>
6969
<code>ppc64, ppc64le</code> (64-bit PowerPC big- and little-endian)
7070
</dt>
7171
<dd>
72-
Supports Linux binaries. New in 1.5 and not as well excercised as other ports.
72+
Supports Linux binaries. New in 1.5 and not as well exercised as other ports.
7373
</dd>
7474
<dt>
7575
<code>mips64, mips64le</code> (64-bit MIPS big- and little-endian)
7676
</dt>
7777
<dd>
78-
Supports Linux binaries. New in 1.6 and not as well excercised as other ports.
78+
Supports Linux binaries. New in 1.6 and not as well exercised as other ports.
7979
</dd>
8080
</dl>
8181

src/container/list/list_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ func TestInsertAfterUnknownMark(t *testing.T) {
326326
}
327327

328328
// Test that a list l is not modified when calling MoveAfter or MoveBefore with a mark that is not an element of l.
329-
func TestMoveUnkownMark(t *testing.T) {
329+
func TestMoveUnknownMark(t *testing.T) {
330330
var l1 List
331331
e1 := l1.PushBack(1)
332332

src/encoding/csv/reader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ func (r *Reader) parseRecord() (fields []string, err error) {
234234
for {
235235
haveField, delim, err := r.parseField()
236236
if haveField {
237-
// If FieldsPerRecord is greater then 0 we can assume the final
237+
// If FieldsPerRecord is greater than 0 we can assume the final
238238
// length of fields to be equal to FieldsPerRecord.
239239
if r.FieldsPerRecord > 0 && fields == nil {
240240
fields = make([]string, 0, r.FieldsPerRecord)

src/runtime/mgc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1388,7 +1388,7 @@ func gcBgMarkWorker(_p_ *p) {
13881388
notewakeup(&work.bgMarkReady)
13891389

13901390
for {
1391-
// Go to sleep until woken by gcContoller.findRunnable.
1391+
// Go to sleep until woken by gcController.findRunnable.
13921392
// We can't releasem yet since even the call to gopark
13931393
// may be preempted.
13941394
gopark(func(g *g, parkp unsafe.Pointer) bool {

0 commit comments

Comments
 (0)