aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/tutorial
diff options
context:
space:
mode:
authorFrederik Zipp <fzipp@gmx.de>2022-06-12 20:19:30 +0200
committerGopher Robot <gobot@golang.org>2022-06-15 16:32:49 +0000
commit4056b246ea265f261d3bf1186f3c7954e115a2e4 (patch)
tree090e20a42dbf2cf6452930038a1f4d1bf19801a4 /_content/doc/tutorial
parent08809b7f2bf270a24665e8e2976acc8a0c3c5a86 (diff)
downloadgo-x-website-4056b246ea265f261d3bf1186f3c7954e115a2e4.tar.xz
all: fix a lot of typos
Change-Id: I0754d18f4c3c3d5dfa0c34b4bc154a35ac20b917 Reviewed-on: https://go-review.googlesource.com/c/website/+/411794 Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com>
Diffstat (limited to '_content/doc/tutorial')
-rw-r--r--_content/doc/tutorial/database-access.md2
-rw-r--r--_content/doc/tutorial/web-service-gin.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/_content/doc/tutorial/database-access.md b/_content/doc/tutorial/database-access.md
index 70955ccb..92fa2ec0 100644
--- a/_content/doc/tutorial/database-access.md
+++ b/_content/doc/tutorial/database-access.md
@@ -653,7 +653,7 @@ relational database.
Suggested next topics:
-* Take a look at the data acccess guide, which includes more information
+* Take a look at the data access guide, which includes more information
about the subjects only touched on here.
* If you're new to Go, you'll find useful best practices described in
diff --git a/_content/doc/tutorial/web-service-gin.md b/_content/doc/tutorial/web-service-gin.md
index 88b36e2d..d8e163e5 100644
--- a/_content/doc/tutorial/web-service-gin.md
+++ b/_content/doc/tutorial/web-service-gin.md
@@ -324,7 +324,7 @@ code to handle a `POST` request to add an item.
## Write a handler to add a new item {#add_item}
When the client makes a `POST` request at `/albums`, you want to add the album
-described in the request body to the existing albums data.
+described in the request body to the existing albums' data.
To do this, you'll write the following: