aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/tutorial/create-module.html
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2021-11-18 10:51:11 -0500
committerRuss Cox <rsc@golang.org>2021-11-22 16:43:17 +0000
commit61fc64f2024b3366363d7c623862d0ab6542a1ff (patch)
treeb8a1ed915d58d6cc6420d9e8c3a0a23051ebe76d /_content/doc/tutorial/create-module.html
parent9d77df7a831fbde9ba62c77c9cd5dc3dd6f6a1c7 (diff)
downloadgo-x-website-61fc64f2024b3366363d7c623862d0ab6542a1ff.tar.xz
_content: update links to tour
Now the tour is just /tour, not https://tour.golang.org. Change-Id: Iebb2f7a5218b747896250815f4f46f62755e6a88 Reviewed-on: https://go-review.googlesource.com/c/website/+/365101 Trust: Russ Cox <rsc@golang.org> Reviewed-by: Jamal Carvalho <jamal@golang.org>
Diffstat (limited to '_content/doc/tutorial/create-module.html')
-rw-r--r--_content/doc/tutorial/create-module.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/_content/doc/tutorial/create-module.html b/_content/doc/tutorial/create-module.html
index d187f4f9..903a3da6 100644
--- a/_content/doc/tutorial/create-module.html
+++ b/_content/doc/tutorial/create-module.html
@@ -217,8 +217,8 @@ func Hello(name string) string {
<code>string</code>. The function also returns a <code>string</code>.
In Go, a function whose name starts with a capital letter can be
called by a function not in the same package. This is known in Go as
- an exported name. For more about exported names, see
- <a href="https://tour.golang.org/basics/3">Exported names</a> in the
+ an exported name. For more about exported names, see
+ <a href="/tour/basics/3">Exported names</a> in the
Go tour.
</p>
<img src="images/function-syntax.png" width="300px" />