]> Cypherpunks repositories - gostls13.git/commitdiff
internal/fuzz: fix typo in function comments
authorAbirdcfly <fp544037857@gmail.com>
Sun, 24 Jul 2022 15:05:37 +0000 (15:05 +0000)
committerGopher Robot <gobot@golang.org>
Mon, 25 Jul 2022 16:12:10 +0000 (16:12 +0000)
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>

src/internal/fuzz/mem.go

index d6d45be20ef3885487b4e7eee4c3a5dae2c3d994..a5c3b02242e380aac9163d12e00bbdc42dac8bcc 100644 (file)
@@ -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
 }