From: Cherry Mui
Date: Mon, 14 Jun 2021 16:35:21 +0000 (-0400)
Subject: doc/go1.17: reword "results" in stack trace printing
X-Git-Tag: go1.17rc1~108
X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d4f34f8c63b753160716e9f90ca530016ce019d7;p=gostls13.git
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
Reviewed-by: Michael Knyszek
Reviewed-by: Tobias Kohlbau
---
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.