aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/runtime/pprof/label_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/runtime/pprof/label_test.go')
-rw-r--r--libgo/go/runtime/pprof/label_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/runtime/pprof/label_test.go b/libgo/go/runtime/pprof/label_test.go
index 240445f..de39d85 100644
--- a/libgo/go/runtime/pprof/label_test.go
+++ b/libgo/go/runtime/pprof/label_test.go
@@ -24,7 +24,7 @@ func (s labelSorter) Swap(i, j int) { s[i], s[j] = s[j], s[i] }
func (s labelSorter) Less(i, j int) bool { return s[i].key < s[j].key }
func TestContextLabels(t *testing.T) {
- // Background context starts with no lablels.
+ // Background context starts with no labels.
ctx := context.Background()
labels := labelsSorted(ctx)
if len(labels) != 0 {