From e10e5b99d5b2f3d14b4e2587f691fc65622944a8 Mon Sep 17 00:00:00 2001 From: Daniel Smith Date: Mon, 16 Jun 2014 22:21:43 -0700 Subject: [PATCH] Fix typo --- pkg/labels/labels_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/labels/labels_test.go b/pkg/labels/labels_test.go index 74db659acaa..c2df41703c3 100644 --- a/pkg/labels/labels_test.go +++ b/pkg/labels/labels_test.go @@ -31,7 +31,7 @@ func TestSetString(t *testing.T) { matches(t, Set{"foo": "bar"}, "foo=bar") matches(t, Set{"foo": "bar", "baz": "qup"}, "baz=qup,foo=bar") - // TODO: Make our label representation robust enough to handel labels + // TODO: Make our label representation robust enough to handle labels // with ",=!" characters in their names. }