From: Robert Griesemer Date: Tue, 16 Dec 2008 18:45:39 +0000 (-0800) Subject: - fixed minor bug in example (found by ken) X-Git-Tag: weekly.2009-11-06~2503 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ef77c226264faf4cfeee1a957ca8de78f9ce40ec;p=gostls13.git - fixed minor bug in example (found by ken) R=r OCL=21272 CL=21272 --- diff --git a/doc/go_spec.txt b/doc/go_spec.txt index bdbe25a074..2c97713f6f 100644 --- a/doc/go_spec.txt +++ b/doc/go_spec.txt @@ -4,7 +4,7 @@ The Go Programming Language Specification (DRAFT) Robert Griesemer, Rob Pike, Ken Thompson ---- -(December 12, 2008) +(December 16, 2008) This document is a semi-formal specification of the Go systems @@ -503,7 +503,7 @@ are concatenated into a single string. The following two lines represent the same string: "Alea iacta est." - "Alea" /* The die */ `iacta est` /* is cast */ "." + "Alea " /* The die */ `iacta est` /* is cast */ "." The language does not canonicalize Unicode text or evaluate combining forms. The text of source code is passed uninterpreted.