diff --git a/doc/effective_go.html b/doc/effective_go.html index a373776892d..4bc92870ac3 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -3041,7 +3041,6 @@ Similarly, assigning greeting to a blank identifier will silence the unused variable error.

{{code "/doc/progs/unused2.go" `/package/` `$`}} -

Import for side effect

@@ -3103,7 +3102,7 @@ cause the compiler to verify this automatically. A declaration can be used to add such a check:

-var _ json.Marshaler = (*MyMessage)(nil)
+var _ json.Marshaler = (*RawMessage)(nil)
 

As part of type-checking this static assignment of a