aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/tutorial
diff options
context:
space:
mode:
authorSean Liao <sean@liao.dev>2025-04-29 21:16:21 +0100
committerSean Liao <sean@liao.dev>2025-05-06 04:54:20 -0700
commit5f7cf0a43faa87164a937d67aaa16f7be8b8b1c8 (patch)
tree808d5558e167ba3994dde8a66a898e604dc70727 /_content/doc/tutorial
parent58861dcc90c64b3e59fa4139140ea9c7b3a0f898 (diff)
downloadgo-x-website-5f7cf0a43faa87164a937d67aaa16f7be8b8b1c8.tar.xz
_content/doc/tutorial: fix link to gin website
Fixes golang/go#73538 Change-Id: I4fb713155f7a38b994a4dfebd758671bbf4170ac Reviewed-on: https://go-review.googlesource.com/c/website/+/668975 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Madeline Kalil <mkalil@google.com>
Diffstat (limited to '_content/doc/tutorial')
-rw-r--r--_content/doc/tutorial/web-service-gin.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/_content/doc/tutorial/web-service-gin.md b/_content/doc/tutorial/web-service-gin.md
index 14e38876..0f2aba47 100644
--- a/_content/doc/tutorial/web-service-gin.md
+++ b/_content/doc/tutorial/web-service-gin.md
@@ -4,7 +4,7 @@
}-->
This tutorial introduces the basics of writing a RESTful web service API with Go
-and the [Gin Web Framework](https://gin-gonic.com/docs/) (Gin).
+and the [Gin Web Framework](https://gin-gonic.com/en/docs/) (Gin).
You'll get the most out of this tutorial if you have a basic familiarity with Go
and its tooling. If this is your first exposure to Go, please see
@@ -581,7 +581,7 @@ Suggested next topics:
* The [Go Tour](/tour/) is a great step-by-step
introduction to Go fundamentals.
* For more about Gin, see the [Gin Web Framework package documentation](https://pkg.go.dev/github.com/gin-gonic/gin)
- or the [Gin Web Framework docs](https://gin-gonic.com/docs/).
+ or the [Gin Web Framework docs](https://gin-gonic.com/en/docs/).
## Completed code {#completed_code}