From 5f029deb3950398609d4d3927310dc6ea95e2943 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Mon, 22 Dec 2014 07:58:26 -0800 Subject: [PATCH] doc: fix comment type typo Fixes #9418 Change-Id: I044fa1d26d972f012f00388a84c4d0f143cf4f63 Reviewed-on: https://go-review.googlesource.com/1970 Reviewed-by: Robert Griesemer --- doc/go_spec.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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
-- 
2.50.0