From da157ef3121d085c396c203cca070e3d42063c79 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 25 Feb 2021 06:19:38 -0500 Subject: _content: remove trailing spaces Change-Id: Ide6008487c296dbd8d8f8cd6bd4eae54c2590127 Reviewed-on: https://go-review.googlesource.com/c/website/+/296381 Trust: Russ Cox Run-TryBot: Russ Cox TryBot-Result: Go Bot Reviewed-by: Dmitri Shuralyov --- _content/doc/tutorial/handle-errors.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '_content/doc/tutorial/handle-errors.html') 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) (string, error) { return "", errors.New("empty name") } - // 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, nil -- cgit v1.3-5-g9baa