The code in the example image on doc/fuzz is not valid syntax (`func` is missing). https://go.dev/doc/fuzz/example.png <img width="529" alt="example" src="https://user-images.githubusercontent.com/598327/145885368-3af91e87-2139-4903-8b1f-0fd1df237602.png"> ### What did you expect to see? ``` f.Fuzz(func(t *testing.T, i int, s string) { // ... }) ``` ### What did you see instead? ``` f.Fuzz(t *testing.T, i int, s string) { // ... } ``` cc @katiehockman
The code in the example image on doc/fuzz is not valid syntax (
funcis missing).https://go.dev/doc/fuzz/example.png
What did you expect to see?
What did you see instead?
cc @katiehockman