1
0
mirror of https://github.com/golang/go synced 2024-11-21 22:34:48 -07:00

spec: fix typo in example comment

R=rsc, golang-dev
CC=golang-dev
https://golang.org/cl/5475046
This commit is contained in:
Charles L. Dorian 2011-12-08 22:27:14 -05:00 committed by Russ Cox
parent a250f37cbc
commit 9a358df947

View File

@ -3458,7 +3458,7 @@ an untyped complex constant.
</p>
<pre>
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)
</pre>