Просмотр исходного кода

Fix AFAnd String() -> "and" instead of "or"

Michael Dresser 3 лет назад
Родитель
Сommit
25212855eb
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      pkg/kubecost/allocationfilter.go

+ 1 - 1
pkg/kubecost/allocationfilter.go

@@ -138,7 +138,7 @@ type AllocationFilterAnd struct {
 }
 
 func (af AllocationFilterAnd) String() string {
-	s := "(or"
+	s := "(and"
 	for _, f := range af.Filters {
 		s += fmt.Sprintf(" %s", f)
 	}