aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2021-12-07 09:50:44 -0800
committerIan Lance Taylor <iant@golang.org>2021-12-08 04:14:00 +0000
commita19e72cb89fd33e5bf1474887e267806f65b7a40 (patch)
treebb98225d3e8160d8fdab7a644937cf86c55f51ae /doc
parent016e6ebb4264f4b46e505bb404953cdb410f63f2 (diff)
downloadgo-a19e72cb89fd33e5bf1474887e267806f65b7a40.tar.gz
go-a19e72cb89fd33e5bf1474887e267806f65b7a40.zip
doc/go1.18: move fuzzing to tools section
For #47694 Change-Id: Idab1a5822a096447c71776ee4339c4262183ceb7 Reviewed-on: https://go-review.googlesource.com/c/go/+/370034 Trust: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Katie Hockman <katie@golang.org> Trust: Katie Hockman <katie@golang.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/go1.18.html42
1 files changed, 21 insertions, 21 deletions
diff --git a/doc/go1.18.html b/doc/go1.18.html
index 06c6786bf2..10a05ad886 100644
--- a/doc/go1.18.html
+++ b/doc/go1.18.html
@@ -112,27 +112,6 @@ Do not send CLs removing the interior tags from such phrases.
programs is likely very small.
</p>
-<h3 id="fuzzing">Fuzzing</h3>
-
-<p>
- Go 1.18 includes an implementation of fuzzing as described by
- <a href="https://golang.org/issue/44551">the fuzzing proposal</a>.
-</p>
-
-<p>
- See the <a href="https://go.dev/doc/fuzz">fuzzing landing page</a> to get
- started.
-</p>
-
-<p>
- Please be aware that fuzzing can consume a lot of memory and may impact your
- machine’s performance while it runs. Also be aware that the fuzzing engine
- writes values that expand test coverage to a fuzz cache directory within
- <code>$GOCACHE/fuzz</code> while it runs. There is currently no limit to the
- number of files or total bytes that may be written to the fuzz cache, so it
- may occupy a large amount of storage (possibly several GBs).
-</p>
-
<h2 id="ports">Ports</h2>
<h3 id="amd64">AMD64</h3>
@@ -183,6 +162,27 @@ Do not send CLs removing the interior tags from such phrases.
<h2 id="tools">Tools</h2>
+<h3 id="fuzzing">Fuzzing</h3>
+
+<p>
+ Go 1.18 includes an implementation of fuzzing as described by
+ <a href="https://golang.org/issue/44551">the fuzzing proposal</a>.
+</p>
+
+<p>
+ See the <a href="https://go.dev/doc/fuzz">fuzzing landing page</a> to get
+ started.
+</p>
+
+<p>
+ Please be aware that fuzzing can consume a lot of memory and may impact your
+ machine’s performance while it runs. Also be aware that the fuzzing engine
+ writes values that expand test coverage to a fuzz cache directory within
+ <code>$GOCACHE/fuzz</code> while it runs. There is currently no limit to the
+ number of files or total bytes that may be written to the fuzz cache, so it
+ may occupy a large amount of storage (possibly several GBs).
+</p>
+
<h3 id="go-command">Go command</h3>
<p><!-- golang.org/issue/43684 -->