aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/tutorial/handle-errors.html
diff options
context:
space:
mode:
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>