From a9ae4f3aa16f1cd2dde0d7a6383f3677b108d010 Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Wed, 3 Jan 2024 08:21:49 -0800 Subject: [PATCH] Fix spelling --- attribute/set.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attribute/set.go b/attribute/set.go index 6f3f1c859c20..8493bf818a52 100644 --- a/attribute/set.go +++ b/attribute/set.go @@ -339,7 +339,7 @@ func (l *Set) Filter(re Filter) (Set, []KeyValue) { // attribute above that needs to be filtered out. return Set{equivalent: computeDistinct(slice[1:])}, slice[:1] } - // Move the filtred slice[first] to the front (preserving order). + // Move the filtered slice[first] to the front (preserving order). kv := slice[first] copy(slice[1:first+1], slice[:first]) slice[0] = kv