diff --git a/doc/go_spec.html b/doc/go_spec.html index 9178ccd068..9c19b08d75 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -1114,7 +1114,7 @@ one unnamed result it may be written as an unparenthesized type.
-The final parameter in a function signature may have
+The final incoming parameter in a function signature may have
a type prefixed with ....
A function with such a parameter is called variadic and
may be invoked with zero or more arguments for that parameter.
@@ -2090,7 +2090,7 @@ Receiver = Parameters .
The receiver is specified via an extra parameter section preceding the method
-name. That parameter section must declare a single parameter, the receiver.
+name. That parameter section must declare a single non-variadic parameter, the receiver.
Its type must be of the form T or *T (possibly using
parentheses) where T is a type name. The type denoted by T is called
the receiver base type; it must not be a pointer or interface type and