summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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