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

doc: fix comment type typo

Fixes #9418

Change-Id: I044fa1d26d972f012f00388a84c4d0f143cf4f63
Reviewed-on: https://go-review.googlesource.com/1970
Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
Brad Fitzpatrick 2014-12-22 07:58:26 -08:00
parent 466118c5c7
commit 5f029deb39

View File

@ -1,6 +1,6 @@
<!--{
"Title": "The Go Programming Language Specification",
"Subtitle": "Version of November 11, 2014",
"Subtitle": "Version of December 22, 2014",
"Path": "/ref/spec"
}-->
@ -1981,7 +1981,7 @@ with no explicit type.
</p>
<pre>
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