From: Brad Fitzpatrick Date: Mon, 22 Dec 2014 15:58:26 +0000 (-0800) Subject: doc: fix comment type typo X-Git-Tag: go1.5beta1~2569 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5f029deb3950398609d4d3927310dc6ea95e2943;p=gostls13.git doc: fix comment type typo Fixes #9418 Change-Id: I044fa1d26d972f012f00388a84c4d0f143cf4f63 Reviewed-on: https://go-review.googlesource.com/1970 Reviewed-by: Robert Griesemer --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 3b67f307f6..fc8242ca53 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -1981,7 +1981,7 @@ with no explicit type.

-var d = math.Sin(0.5)  // d is int64
+var d = math.Sin(0.5)  // d is float64
 var i = 42             // i is int
 var t, ok = x.(T)      // t is T, ok is bool
 var n = nil            // illegal