mirror of
https://github.com/golang/go
synced 2024-11-13 15:00:23 -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:
parent
466118c5c7
commit
5f029deb39
@ -1,6 +1,6 @@
|
|||||||
<!--{
|
<!--{
|
||||||
"Title": "The Go Programming Language Specification",
|
"Title": "The Go Programming Language Specification",
|
||||||
"Subtitle": "Version of November 11, 2014",
|
"Subtitle": "Version of December 22, 2014",
|
||||||
"Path": "/ref/spec"
|
"Path": "/ref/spec"
|
||||||
}-->
|
}-->
|
||||||
|
|
||||||
@ -1981,7 +1981,7 @@ with no explicit type.
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<pre>
|
<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 i = 42 // i is int
|
||||||
var t, ok = x.(T) // t is T, ok is bool
|
var t, ok = x.(T) // t is T, ok is bool
|
||||||
var n = nil // illegal
|
var n = nil // illegal
|
||||||
|
Loading…
Reference in New Issue
Block a user