]> Cypherpunks repositories - gostls13.git/commitdiff
doc/effective_go.html: fix typo
authorShenghou Ma <minux.ma@gmail.com>
Tue, 16 Apr 2013 20:41:28 +0000 (04:41 +0800)
committerShenghou Ma <minux.ma@gmail.com>
Tue, 16 Apr 2013 20:41:28 +0000 (04:41 +0800)
Fixes #5296.

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/8682044

doc/effective_go.html

index a1e13c0f69fbd727f949c9d6cde78c600c2d6c1e..1da9c4ef16abce399ac3fd52517c3a9dce15c382 100644 (file)
@@ -2555,7 +2555,7 @@ if _, ok := val.(json.Marshaler); ok {
 
 <p>
 One place this situation arises is when it is necessary to guarantee within the package implementing the type that
-it it actually satisfies the interface.
+it actually satisfies the interface.
 If a type—for example,
 <code><a href="/pkg/encoding/json/#RawMessage">json.RawMessage</a></code>—needs
 a custom its JSON representation, it should implement