From 65aaeec8db14c23e7bc8a62ce9ecfde98a263a49 Mon Sep 17 00:00:00 2001 From: Abirdcfly Date: Sun, 24 Jul 2022 23:00:07 +0800 Subject: [PATCH] internal/fuzz: fix typo in function comments The correct word to use here is 'retrieve' not 'retrive' --- src/internal/fuzz/mem.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }