aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/tutorial/handle-errors.html
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2021-02-25 06:19:38 -0500
committerRuss Cox <rsc@golang.org>2021-03-12 19:58:11 +0000
commitda157ef3121d085c396c203cca070e3d42063c79 (patch)
tree91b28fdb89fa87dca30a2778e4c8916b6d214528 /_content/doc/tutorial/handle-errors.html
parent7fe51e8c4ab43b080b824b9c947b2a76c7a9845c (diff)
downloadgo-x-website-da157ef3121d085c396c203cca070e3d42063c79.tar.xz
_content: remove trailing spaces
Change-Id: Ide6008487c296dbd8d8f8cd6bd4eae54c2590127 Reviewed-on: https://go-review.googlesource.com/c/website/+/296381 Trust: Russ Cox <rsc@golang.org> Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Diffstat (limited to '_content/doc/tutorial/handle-errors.html')
-rw-r--r--_content/doc/tutorial/handle-errors.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/_content/doc/tutorial/handle-errors.html b/_content/doc/tutorial/handle-errors.html
index 76f7a4f3..4ffadbc1 100644
--- a/_content/doc/tutorial/handle-errors.html
+++ b/_content/doc/tutorial/handle-errors.html
@@ -39,7 +39,7 @@ func Hello(name string) <ins>(</ins>string<ins>, error)</ins> {
return "", errors.New("empty name")
}</ins>
- // If a name was received, return a value that embeds the name
+ // If a name was received, return a value that embeds the name
// in a greeting message.
message := fmt.Sprintf("Hi, %v. Welcome!", name)
return message<ins>, nil</ins>