1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-09 09:35:00 +09:00

GO-2253 Fix misspell

This commit is contained in:
kirillston 2023-10-27 14:18:53 +02:00
parent 86a6b2257d
commit 49c251a344
No known key found for this signature in database
GPG key ID: 88218A7F1109754B

View file

@ -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)