summaryrefslogtreecommitdiff
path: root/doc/effective_go.html
diff options
context:
space:
mode:
authorShenghou Ma <minux.ma@gmail.com>2013-04-17 04:41:28 +0800
committerShenghou Ma <minux.ma@gmail.com>2013-04-17 04:41:28 +0800
commit07015debda8d5704bf6fb1839b60d0315bb3591a (patch)
treec8168588deb4d10b614e4117df3b82ca19040d68 /doc/effective_go.html
parent5acc8202a41c04efc17a8b3e0c8a0b46d62836ef (diff)
downloadgo-07015debda8d5704bf6fb1839b60d0315bb3591a.tar.gz
doc/effective_go.html: fix typo
Fixes issue 5296. R=golang-dev, r CC=golang-dev https://codereview.appspot.com/8682044
Diffstat (limited to 'doc/effective_go.html')
-rw-r--r--doc/effective_go.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/effective_go.html b/doc/effective_go.html
index a1e13c0f6..1da9c4ef1 100644
--- a/doc/effective_go.html
+++ b/doc/effective_go.html
@@ -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