mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
spec: the -'s possessive suffix is English, not code
Change-Id: I2debcf926ef116c632c7366646d37de8686b7c9e Reviewed-on: https://go-review.googlesource.com/c/go/+/388174 Reviewed-by: Robert Griesemer <gri@golang.org> Trust: Matthew Dempsky <mdempsky@google.com>
This commit is contained in:
parent
57e3809884
commit
b33592dcfd
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
<!--{
|
<!--{
|
||||||
"Title": "The Go Programming Language Specification - Go 1.18 Draft",
|
"Title": "The Go Programming Language Specification - Go 1.18 Draft",
|
||||||
"Subtitle": "Version of Feb 14, 2022",
|
"Subtitle": "Version of Feb 28, 2022",
|
||||||
"Path": "/ref/spec"
|
"Path": "/ref/spec"
|
||||||
}-->
|
}-->
|
||||||
|
|
||||||
|
@ -2008,7 +2008,7 @@ by a value of type <code>T</code>.
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Additionally, if <code>x's</code> type <code>V</code> or <code>T</code> are type parameters
|
Additionally, if <code>x</code>'s type <code>V</code> or <code>T</code> are type parameters
|
||||||
with <a href="#Specific_types">specific types</a>, <code>x</code>
|
with <a href="#Specific_types">specific types</a>, <code>x</code>
|
||||||
is assignable to a variable of type <code>T</code> if one of the following conditions applies:
|
is assignable to a variable of type <code>T</code> if one of the following conditions applies:
|
||||||
</p>
|
</p>
|
||||||
|
@ -7414,7 +7414,7 @@ an explicit call to <code>panic</code> or a <a href="#Run_time_panics">run-time
|
||||||
terminates the execution of <code>F</code>.
|
terminates the execution of <code>F</code>.
|
||||||
Any functions <a href="#Defer_statements">deferred</a> by <code>F</code>
|
Any functions <a href="#Defer_statements">deferred</a> by <code>F</code>
|
||||||
are then executed as usual.
|
are then executed as usual.
|
||||||
Next, any deferred functions run by <code>F's</code> caller are run,
|
Next, any deferred functions run by <code>F</code>'s caller are run,
|
||||||
and so on up to any deferred by the top-level function in the executing goroutine.
|
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
|
At that point, the program is terminated and the error
|
||||||
condition is reported, including the value of the argument to <code>panic</code>.
|
condition is reported, including the value of the argument to <code>panic</code>.
|
||||||
|
|
Loading…
Reference in a new issue