From: Rob Pike Date: Sat, 21 Mar 2009 00:03:48 +0000 (-0700) Subject: fix wording of &T{x} X-Git-Tag: weekly.2009-11-06~1991 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2a5af744a683a3bac0f613eaabc8f09ecf89b929;p=gostls13.git fix wording of &T{x} R=rsc DELTA=5 (0 added, 2 deleted, 3 changed) OCL=26607 CL=26607 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 935787f8a4..4100610f6c 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1910,11 +1910,9 @@ pi := Num{Rat{22, 7}, 3.14159, "pi"}

-Since evaluation of a literal creates a new value, taking the address of a -composite literal (§Address operators) generates a pointer to a unique -instance of the literal's value. +Taking the address of a composite literal (§Address operators) +generates a unique pointer to an instance of the literal's value.

-
 var pi_ptr *Rat = &Rat{22, 7}