From 49c251a34467ea4bdb4ab94286ac5a026ef9fd89 Mon Sep 17 00:00:00 2001 From: kirillston Date: Fri, 27 Oct 2023 14:18:53 +0200 Subject: [PATCH] GO-2253 Fix misspell --- util/slice/slice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/slice/slice.go b/util/slice/slice.go index a58b6b463..1159090c4 100644 --- a/util/slice/slice.go +++ b/util/slice/slice.go @@ -99,7 +99,7 @@ func RemoveMut[T comparable](s []T, v T) []T { return s[:n] } -// Remove is an immutable analogue of RemoveMut function. Input slice is copied and then modified +// Remove is an immutable analog of RemoveMut function. Input slice is copied and then modified func Remove[T comparable](s []T, v T) []T { var n int sc := slices.Clone(s)