fix example compact

adjust the date(Oct 7 2020 -> Feb 2 2021)
This commit is contained in:
task4233 2021-02-02 12:50:26 +09:00
parent 5a65aff7c3
commit b34fffb6bb

View File

@ -1,6 +1,6 @@
<!--{
"Title": "The Go Programming Language Specification",
"Subtitle": "Version of Oct 7, 2020",
"Subtitle": "Version of Feb 2, 2021",
"Path": "/ref/spec"
}-->
@ -3400,12 +3400,7 @@ A type assertion used in an <a href="#Assignments">assignment</a> or initializat
v, ok = x.(T)
v, ok := x.(T)
var v, ok = x.(T)
var v, ok interface{} = x.(T)
type v T
type ok T1
v, ok = x.(T) // type T1 is derived from interface{} or bool
var v, ok interface{} = x.(T) // dynamic types of v and ok are T and bool
</pre>
<p>