summaryrefslogtreecommitdiffhomepage
path: root/go.html.markdown
diff options
context:
space:
mode:
authorSam Zaydel <szaydel@gmail.com>2014-06-23 07:31:39 -0700
committerSam Zaydel <szaydel@gmail.com>2014-06-23 07:31:39 -0700
commite881ba74f302cc5cac7f21cd1e7da163ca774d78 (patch)
treef1d36bd8643baf97b89eb0608f5afe449bcace7d /go.html.markdown
parent94484047091a18d4b2440650382b9ecbd7840044 (diff)
Hopefully slight language improvement over orig.
Diffstat (limited to 'go.html.markdown')
-rw-r--r--go.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/go.html.markdown b/go.html.markdown
index 0a0e6c53..c70f96bd 100644
--- a/go.html.markdown
+++ b/go.html.markdown
@@ -118,9 +118,9 @@ can include line breaks.` // Same string type.
// It is possible, unlike in many other languages for functions in go
// to have named return values.
-// Giving a name to type being returned allows us to easily return from
-// multiple points in a function as well as to only use the return keyword,
-// without anything further.
+// Assigning a name to the type being returned in the function declaration line
+// allows us to easily return from multiple points in a function as well as to
+// only use the return keyword, without anything further.
func learnNamedReturns(x, y int) (z int) {
z = x * y
return // z is implicit here, because we named it earlier.