From deb988a2866ce541058d8af3844912d1a638980b Mon Sep 17 00:00:00 2001 From: Katie Hockman Date: Fri, 3 Dec 2021 12:23:44 -0500 Subject: [PATCH] doc/go1.18: mention fuzzing in the release notes Also make a few small formatting fixes. Change-Id: Iad99d030312393af3b6533f2cd00f09aea0f2a7d Reviewed-on: https://go-review.googlesource.com/c/go/+/369074 Trust: Katie Hockman Run-TryBot: Katie Hockman TryBot-Result: Gopher Robot Reviewed-by: Robert Griesemer --- doc/go1.18.html | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/doc/go1.18.html b/doc/go1.18.html index 3e7de64121..27eaf0beec 100644 --- a/doc/go1.18.html +++ b/doc/go1.18.html @@ -59,9 +59,9 @@ Do not send CLs removing the interior tags from such phrases.

Generics

-Go 1.18 includes an implementation of generics as described -by the -proposal. + Go 1.18 includes an implementation of generics as described + by the + generics proposal.

@@ -74,6 +74,27 @@ proposal.

+

Fuzzing

+ +

+ Go 1.18 includes an implementation of fuzzing as described by + the fuzzing proposal. +

+ +

+ See the fuzzing landing page to get + started. +

+ +

+ 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 + $GOCACHE/fuzz 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). +

+

Ports

AMD64

-- 2.50.0