]> Cypherpunks repositories - gostls13.git/commitdiff
runtime/trace: fix a typo in doc
authorHana Kim <hakim@google.com>
Wed, 30 Aug 2017 16:24:37 +0000 (12:24 -0400)
committerBrad Fitzpatrick <bradfitz@golang.org>
Wed, 15 Nov 2017 15:13:50 +0000 (15:13 +0000)
Change-Id: I63f3d2edb09801c99957a1f744639523fb6d0b62
Reviewed-on: https://go-review.googlesource.com/60331
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/runtime/trace/trace.go

index f1d5ea1ef1904d83e063762a82d1adf76adb2606..439f998c03a1ab7acf8eec07b985a6c9df6755b3 100644 (file)
@@ -7,7 +7,7 @@
 //
 // The execution trace captures a wide range of execution events such as
 // goroutine creation/blocking/unblocking, syscall enter/exit/block,
-// GC-related events, changes of heap size, processor stop/stop, etc.
+// GC-related events, changes of heap size, processor start/stop, etc.
 // A precise nanosecond-precision timestamp and a stack trace is
 // captured for most events. The generated trace can be interpreted
 // using `go tool trace`.