From: Charles L. Dorian Date: Fri, 9 Dec 2011 03:27:14 +0000 (-0500) Subject: spec: fix typo in example comment X-Git-Tag: weekly.2011-12-14~126 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9a358df947580c585f5596d89a2ab2be22fea018;p=gostls13.git spec: fix typo in example comment R=rsc, golang-dev CC=golang-dev https://golang.org/cl/5475046 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index cd506308ce..673b36d3e0 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -3458,7 +3458,7 @@ an untyped complex constant.

-const ic = complex(0, c)   // iΓ == 3.75i (untyped complex constant)
+const ic = complex(0, c)   // ic == 3.75i (untyped complex constant)
 const iΘ = complex(0, Θ)   // iΘ == 1.5i  (type complex128)
 
@@ -5200,7 +5200,7 @@ Execution errors such as attempting to index an array out of bounds trigger a run-time panic equivalent to a call of the built-in function panic with a value of the implementation-defined interface type runtime.Error. -That type satisfies the predeclared interface type +That type satisfies the predeclared interface type error. The exact error values that represent distinct run-time error conditions are unspecified.