From c7b4134ae0e07d6c9b5f27afe24437f4f74f823a Mon Sep 17 00:00:00 2001 From: cuishuang Date: Tue, 1 Mar 2022 14:49:49 +0800 Subject: [PATCH] utils: fix typo Signed-off-by: cuishuang --- utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.go b/utils.go index bcdee1b46..1176d743b 100644 --- a/utils.go +++ b/utils.go @@ -542,7 +542,7 @@ func stringToInt(b []byte) int { return val } -// returns the string read as a bytes slice, wheter the value is NULL, +// returns the string read as a bytes slice, whether the value is NULL, // the number of bytes read and an error, in case the string is longer than // the input slice func readLengthEncodedString(b []byte) ([]byte, bool, int, error) {