From 6f8df7aa3e8cb6251d4aec424b395ebc686353c7 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Wed, 11 Feb 2009 21:57:15 -0800 Subject: [PATCH] - syntax for composite literals use () instead of {} - do not permit + for array concatenation anymore (not implemented and not a good idea) - document that unsafe function results are compile time constants - fixed minor typos DELTA=41 (7 added, 11 deleted, 23 changed) OCL=24899 CL=24927 --- doc/go_spec.txt | 62 +++++++++++++++++++++++-------------------------- 1 file changed, 29 insertions(+), 33 deletions(-) diff --git a/doc/go_spec.txt b/doc/go_spec.txt index 7417e03c40..d17b126cb2 100644 --- a/doc/go_spec.txt +++ b/doc/go_spec.txt @@ -1,7 +1,7 @@ The Go Programming Language Specification (DRAFT) ---- -Robert Griesemer, Rob Pike, Ken Thompson +Russ Cox, Robert Griesemer, Rob Pike, Ian Taylor, Ken Thompson (February 11, 2009) @@ -19,6 +19,7 @@ Any part may change substantially as design progresses.