diff --git a/doc/go_spec.html b/doc/go_spec.html index 935787f8a41..4100610f6c4 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}