diff --git a/doc/effective_go.html b/doc/effective_go.html index a1e13c0f69..1da9c4ef16 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -2555,7 +2555,7 @@ if _, ok := val.(json.Marshaler); ok {

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, json.RawMessage—needs a custom its JSON representation, it should implement