From 458632a21a7e532e10b7a64daf447e2ccfab97e1 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 4 Dec 2012 13:09:02 -0800 Subject: [PATCH] spec: BuiltinCall syntax must permit "..." for append Also: fix an incorrect link. Fixes #4479. Fixes #4456. R=rsc, iant, r, ken CC=golang-dev https://golang.org/cl/6868062 --- doc/go_spec.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/go_spec.html b/doc/go_spec.html index f33147a445..4061c780fb 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -1013,7 +1013,7 @@ promoted methods are included in the method set of the struct as follows: A field declaration may be followed by an optional string literal tag, which becomes an attribute for all the fields in the corresponding field declaration. The tags are made -visible through a reflection interface +visible through a reflection interface but are otherwise ignored.

@@ -4831,7 +4831,7 @@ they cannot be used as function values.
 BuiltinCall = identifier "(" [ BuiltinArgs [ "," ] ] ")" .
-BuiltinArgs = Type [ "," ExpressionList ] | ExpressionList .
+BuiltinArgs = Type [ "," ArgumentList ] | ArgumentList .
 

Close