aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/tutorial
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2023-12-18 15:16:58 -0500
committerRuss Cox <rsc@golang.org>2023-12-20 17:31:44 +0000
commitb52edba3f82120d0f819beafbfda191a0a747241 (patch)
treeb7982d32134a4d44fbd138ba0f5e7db69d245c57 /_content/doc/tutorial
parent5f31ab0a4d90318ae0bd84d9b0d5ecbc7480255a (diff)
downloadgo-x-website-b52edba3f82120d0f819beafbfda191a0a747241.tar.xz
all: fix and test for references to github.com/golang/go/issues and wiki
Insist on the canonical /issue/ and /wiki/ links instead. Change-Id: I7a2eedda69bc3fcd11466722a41f00c9dbaf283f Reviewed-on: https://go-review.googlesource.com/c/website/+/550323 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to '_content/doc/tutorial')
-rw-r--r--_content/doc/tutorial/database-access.md2
-rw-r--r--_content/doc/tutorial/fuzz.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/_content/doc/tutorial/database-access.md b/_content/doc/tutorial/database-access.md
index f82e8b04..900e66c3 100644
--- a/_content/doc/tutorial/database-access.md
+++ b/_content/doc/tutorial/database-access.md
@@ -196,7 +196,7 @@ Locate and import a database driver that will translate requests you make
through functions in the `database/sql` package into requests the database
understands.
-1. In your browser, visit the [SQLDrivers](https://github.com/golang/go/wiki/SQLDrivers)
+1. In your browser, visit the [SQLDrivers](/wiki/SQLDrivers)
wiki page to identify a driver you can use.
Use the list on the page to identify the driver you'll use. For accessing
diff --git a/_content/doc/tutorial/fuzz.md b/_content/doc/tutorial/fuzz.md
index 95516bba..881ba8f9 100644
--- a/_content/doc/tutorial/fuzz.md
+++ b/_content/doc/tutorial/fuzz.md
@@ -730,10 +730,10 @@ Nicely done! You've just introduced yourself to fuzzing in Go.
The next step is to choose a function in your code that you'd like to fuzz, and
try it out! If fuzzing finds a bug in your code, consider adding it to the
-[trophy case](https://github.com/golang/go/wiki/Fuzzing-trophy-case).
+[trophy case](/wiki/Fuzzing-trophy-case).
If you experience any problems or have an idea for a feature, [file an
-issue](https://github.com/golang/go/issues/new/?&labels=fuzz).
+issue](/issue/new/?&labels=fuzz).
For discussion and general feedback about the feature, you can also participate
in the [#fuzzing channel](https://gophers.slack.com/archives/CH5KV1AKE) in