From 94484047091a18d4b2440650382b9ecbd7840044 Mon Sep 17 00:00:00 2001 From: Sam Zaydel Date: Sun, 22 Jun 2014 20:49:29 -0700 Subject: [PATCH] Slight language change per pull req. comment --- go.html.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/go.html.markdown b/go.html.markdown index 0f022541..0a0e6c53 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. -// We just have to assign a name to the type being returned in the function -// declaration line. This allows us to easily return from multiple points -// in a function as well as to only use the return keyword, without anything further. +// 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. func learnNamedReturns(x, y int) (z int) { z = x * y return // z is implicit here, because we named it earlier.