From 2d2fc5b9cbef2597ca48ddb6615b086f37fe60f5 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 7 Dec 2023 12:49:14 -0500 Subject: _content: rewrite links to https://go.dev/foo to /foo We use /foo consistently so that people browsing on golang.google.cn are not redirected to go.dev. This CL is completely mechanical, replacing href="https://go.dev/ -> href="/ in HTML and replacing ](https://go.dev/ -> ](/ in Markdown. Change-Id: I8ac732d672075600c8e53c46787205454b196850 Reviewed-on: https://go-review.googlesource.com/c/website/+/548058 Reviewed-by: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov Auto-Submit: Russ Cox LUCI-TryBot-Result: Go LUCI --- _content/doc/tutorial/fuzz.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '_content/doc/tutorial/fuzz.md') diff --git a/_content/doc/tutorial/fuzz.md b/_content/doc/tutorial/fuzz.md index 8957197c..95516bba 100644 --- a/_content/doc/tutorial/fuzz.md +++ b/_content/doc/tutorial/fuzz.md @@ -717,7 +717,7 @@ UTF-8. In addition to the `-fuzz` flag, several new flags have been added to `go test` and can be viewed in the [documentation](/security/fuzz/#custom-settings). - See [Go Fuzzing](https://go.dev/security/fuzz/#command-line-output) for more + See [Go Fuzzing](/security/fuzz/#command-line-output) for more information on terms used in fuzzing output. For example, "new interesting" refers to inputs that expand the code coverage of the existing fuzz test corpus. The number of "new interesting" inputs can be expected to increase @@ -810,4 +810,4 @@ func FuzzReverse(f *testing.F) { } ``` -[Back to top](#top) \ No newline at end of file +[Back to top](#top) -- cgit v1.3-5-g9baa