From 7b9b8834a8b8b5eb8426f57dbb80edb9e81d0550 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 12 Mar 2026 13:48:20 +0530 Subject: [PATCH] ... --- tools/simdstring/intrinsics.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/simdstring/intrinsics.go b/tools/simdstring/intrinsics.go index 71de1df8b..db8e27397 100644 --- a/tools/simdstring/intrinsics.go +++ b/tools/simdstring/intrinsics.go @@ -15,8 +15,7 @@ var VectorSize = 1 // Return the index at which b first occurs in data. If not found -1 is returned. var IndexByte func(data []byte, b byte) int = index_byte_scalar -// Return the index at which either a or b first occurs in text. If neither is -// found -1 is returned. +// Return the index at which b first occurs in text. If not found -1 is returned. var IndexByteString func(text string, b byte) int = index_byte_string_scalar // Return the index at which either a or b first occurs in data. If neither is