From 5e57954f8c57233f1217b14c1f479a8571f8d10d Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 8 Nov 2012 23:48:13 -0800 Subject: [PATCH] runtime/pprof: fix typo in comment R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6810102 --- src/pkg/runtime/pprof/pprof.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/runtime/pprof/pprof.go b/src/pkg/runtime/pprof/pprof.go index 952ccf6d89..ee81c94a25 100644 --- a/src/pkg/runtime/pprof/pprof.go +++ b/src/pkg/runtime/pprof/pprof.go @@ -38,7 +38,7 @@ import ( // threadcreate - stack traces that led to the creation of new OS threads // block - stack traces that led to blocking on synchronization primitives // -// These predefine profiles maintain themselves and panic on an explicit +// These predefined profiles maintain themselves and panic on an explicit // Add or Remove method call. // // The CPU profile is not available as a Profile. It has a special API,