diff --git a/doc/go_spec.html b/doc/go_spec.html index c0b224f977..fa6630719b 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -1988,7 +1988,8 @@ More precisely, for a given interface, the set 𝑆 of specific types is defined
T
@@ -2021,7 +2022,7 @@ interface{ ~string } // string
interface{ int|~string } // int, string
interface{ Celsius|Kelvin } // Celsius, Kelvin
interface{ int; m() } // int (but type set is empty because int has no method m)
-interface{ int; any } // no specific types (intersection is empty)
+interface{ int; any } // int (any has no specific types and is ignored)
interface{ int; string } // no specific types (intersection is empty)