From: Shenghou Ma Date: Fri, 26 Dec 2014 07:50:33 +0000 (-0500) Subject: doc/go_spec: fix typo X-Git-Tag: go1.5beta1~2517 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c0abdd9f29aa584804ab98ff964cd7d590f81260;p=gostls13.git doc/go_spec: fix typo Fixes #9445 Change-Id: If7abd4d4d41cdfd5cf677f03533c930c8b965a01 Reviewed-on: https://go-review.googlesource.com/2128 Reviewed-by: Brad Fitzpatrick --- diff --git a/doc/go_spec.html b/doc/go_spec.html index fc8242ca53..5a1b291433 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -5455,7 +5455,7 @@ const ( c2 = len([10]float64{2}) // [10]float64{2} contains no function calls c3 = len([10]float64{c1}) // [10]float64{c1} contains no function calls c4 = len([10]float64{imag(2i)}) // imag(2i) is a constant and no function call is issued - c5 = len([10]float64{imag(z)}) // invalid: imag(x) is a (non-constant) function call + c5 = len([10]float64{imag(z)}) // invalid: imag(z) is a (non-constant) function call ) var z complex128