Skip to content

Commit b33592d

Browse files
committed
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 <[email protected]> Trust: Matthew Dempsky <[email protected]>
1 parent 57e3809 commit b33592d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/go_spec.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--{
22
"Title": "The Go Programming Language Specification - Go 1.18 Draft",
3-
"Subtitle": "Version of Feb 14, 2022",
3+
"Subtitle": "Version of Feb 28, 2022",
44
"Path": "/ref/spec"
55
}-->
66

@@ -2008,7 +2008,7 @@ <h3 id="Assignability">Assignability</h3>
20082008
</ul>
20092009

20102010
<p>
2011-
Additionally, if <code>x's</code> type <code>V</code> or <code>T</code> are type parameters
2011+
Additionally, if <code>x</code>'s type <code>V</code> or <code>T</code> are type parameters
20122012
with <a href="#Specific_types">specific types</a>, <code>x</code>
20132013
is assignable to a variable of type <code>T</code> if one of the following conditions applies:
20142014
</p>
@@ -7414,7 +7414,7 @@ <h3 id="Handling_panics">Handling panics</h3>
74147414
terminates the execution of <code>F</code>.
74157415
Any functions <a href="#Defer_statements">deferred</a> by <code>F</code>
74167416
are then executed as usual.
7417-
Next, any deferred functions run by <code>F's</code> caller are run,
7417+
Next, any deferred functions run by <code>F</code>'s caller are run,
74187418
and so on up to any deferred by the top-level function in the executing goroutine.
74197419
At that point, the program is terminated and the error
74207420
condition is reported, including the value of the argument to <code>panic</code>.

0 commit comments

Comments
 (0)