From: Dmitriy Vyukov
Date: Thu, 4 Apr 2013 00:03:42 +0000 (-0700)
Subject: doc: fix typos in go1.1
X-Git-Tag: go1.1rc2~189
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=72d99aec8836e3a44aff06dd787c051e9cf9eff2;p=gostls13.git
doc: fix typos in go1.1
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/8342044
---
diff --git a/doc/go1.1.html b/doc/go1.1.html
index 80f5ae1e48..c367875c4f 100644
--- a/doc/go1.1.html
+++ b/doc/go1.1.html
@@ -291,7 +291,7 @@ The byte-order-mark change is strictly backward-compatible.
A major addition to the tools is a race detector, a way to find
bugs in programs caused by problems like concurrent changes to the same variable.
This new facility is built into the go
tool.
-To enable it, set the the -race
flag when building or testing your program
+To enable it, set the -race
flag when building or testing your program
(for instance, go test -race
).
The race detector is documented in a separate article.
@@ -968,7 +968,7 @@ The strings
package has two new functio
TrimPrefix
and
TrimSuffix
-with self-evident properties, and the the new method
+with self-evident properties, and the new method
Reader.WriteTo
so the
Reader
type now implements the