aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAbirdcfly <fp544037857@gmail.com>2022-07-24 15:05:37 +0000
committerGopher Robot <gobot@golang.org>2022-07-25 16:12:10 +0000
commit37c8112b825a2c60d1b3776c0b4f4c643391d490 (patch)
tree334df6ee79455bb09aa0fecb32c4c4248b3d30fe
parent850d547d2de9044eb84ba65ceefb90880f3a776c (diff)
downloadgo-37c8112b825a2c60d1b3776c0b4f4c643391d490.tar.gz
go-37c8112b825a2c60d1b3776c0b4f4c643391d490.zip
internal/fuzz: fix typo in function comments
The correct word to use here is 'retrieve' not 'retrive' Change-Id: I8de0961a254cf429ddbaf599fe996155e24c7af2 GitHub-Last-Rev: 65aaeec8db14c23e7bc8a62ce9ecfde98a263a49 GitHub-Pull-Request: golang/go#54026 Reviewed-on: https://go-review.googlesource.com/c/go/+/419317 Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Ian Lance Taylor <iant@google.com>
-rw-r--r--src/internal/fuzz/mem.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/fuzz/mem.go b/src/internal/fuzz/mem.go
index d6d45be20e..a5c3b02242 100644
--- a/src/internal/fuzz/mem.go
+++ b/src/internal/fuzz/mem.go
@@ -50,7 +50,7 @@ type sharedMemHeader struct {
// rawInMem is true if the region holds raw bytes, which occurs during
// minimization. If true after the worker fails during minimization, this
// indicates that an unrecoverable error occurred, and the region can be
- // used to retrive the raw bytes that caused the error.
+ // used to retrieve the raw bytes that caused the error.
rawInMem bool
}