diff --git a/doc/go_spec.html b/doc/go_spec.html index bf8b5ed5bf7603..6c6f982854aeeb 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -2008,7 +2008,7 @@

Assignability

-Additionally, if x's type V or T are type parameters +Additionally, if x's type V or T are type parameters with specific types, x is assignable to a variable of type T if one of the following conditions applies:

@@ -7414,7 +7414,7 @@

Handling panics

terminates the execution of F. Any functions deferred by F are then executed as usual. -Next, any deferred functions run by F's caller are run, +Next, any deferred functions run by F's caller are run, and so on up to any deferred by the top-level function in the executing goroutine. At that point, the program is terminated and the error condition is reported, including the value of the argument to panic.