aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCherry Mui <cherryyz@google.com>2021-06-14 12:35:21 -0400
committerCherry Mui <cherryyz@google.com>2021-06-14 19:26:24 +0000
commitd4f34f8c63b753160716e9f90ca530016ce019d7 (patch)
treeff7b2e4a9879e170d2cdcc2bb986c49dd8428d8f /doc
parentfdab5be159c508c4c1cf5be84119fd2b38403cdf (diff)
downloadgo-d4f34f8c63b753160716e9f90ca530016ce019d7.tar.gz
go-d4f34f8c63b753160716e9f90ca530016ce019d7.zip
doc/go1.17: reword "results" in stack trace printing
"Results" may sound like the results from the previous sentence. Reword to "function return values" for clarity. Suggested by Tobias Kohlbau. Change-Id: Ie78df36b5b191b06e98b802f9a46db6d067a8ea0 Reviewed-on: https://go-review.googlesource.com/c/go/+/327774 Trust: Cherry Mui <cherryyz@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Tobias Kohlbau <tobias@kohlbau.de>
Diffstat (limited to 'doc')
-rw-r--r--doc/go1.17.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/go1.17.html b/doc/go1.17.html
index 35d0f97450..e0856ff83a 100644
--- a/doc/go1.17.html
+++ b/doc/go1.17.html
@@ -406,7 +406,8 @@ func Foo() bool {
by commas. Aggregate-typed (struct, array, string, slice, interface, and complex)
arguments are delimited by curly braces. A caveat is that the value of an
argument that only lives in a register and is not stored to memory may be
- inaccurate. Results (which were usually inaccurate) are no longer printed.
+ inaccurate. Function return values (which were usually inaccurate) are no longer
+ printed.
</p>
<p><!-- CL 283112, golang.org/issue/28727 -->