diff --git a/doc/effective_go.html b/doc/effective_go.html index 158f39ebc8..be9b8aef9c 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -624,7 +624,7 @@ if it has already been declared, provided:
  • this declaration is in the same scope as the existing declaration of v (if v is already declared in an outer scope, the declaration will create a new variable ยง),
  • the corresponding value in the initialization is assignable to v, and
  • -
  • there is at least one other variable in the declaration that is being declared anew.
  • +
  • there is at least one other variable that is created by the declaration.