aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-09-22 05:54:54 +1000
committerRuss Cox <rsc@golang.org>2012-09-22 05:54:54 +1000
commit7ed136f1215c97f74936e3d53c2360f1b11ce377 (patch)
tree46ae09ae473c6eb684d9ff8f45c718a52909ea30
parente4123891690e4018c07f6f221567e2ca9a6600c5 (diff)
downloadgo-7ed136f1215c97f74936e3d53c2360f1b11ce377.tar.gz
go-7ed136f1215c97f74936e3d53c2360f1b11ce377.zip
[release-branch.go1] runtime/pprof: restore articles in type doc comments
««« backport b57b5be5a32c runtime/pprof: restore articles in type doc comments Reverts part of CL 6460082. If a doc comment describes a type by explaining the meaning of one instance of the type, a leading article is fine and makes the text less awkward. Compare: // A dog is a kind of animal. // Dog is a kind of animal. R=golang-dev, dsymonds, dvyukov, r CC=golang-dev https://golang.org/cl/6494066 »»»
-rw-r--r--src/pkg/runtime/pprof/pprof.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/runtime/pprof/pprof.go b/src/pkg/runtime/pprof/pprof.go
index 48e8b92f97..8cc15390c1 100644
--- a/src/pkg/runtime/pprof/pprof.go
+++ b/src/pkg/runtime/pprof/pprof.go
@@ -23,7 +23,7 @@ import (
// BUG(rsc): A bug in the OS X Snow Leopard 64-bit kernel prevents
// CPU profiling from giving accurate results on that system.
-// Profile is a collection of stack traces showing the call sequences
+// A Profile is a collection of stack traces showing the call sequences
// that led to instances of a particular event, such as allocation.
// Packages can create and maintain their own profiles; the most common
// use is for tracking resources that must be explicitly closed, such as files
@@ -250,7 +250,7 @@ func (x stackProfile) Less(i, j int) bool {
return len(t) < len(u)
}
-// countProfile is a set of stack traces to be printed as counts
+// A countProfile is a set of stack traces to be printed as counts
// grouped by stack trace. There are multiple implementations:
// all that matters is that we can find out how many traces there are
// and obtain each trace in turn.