1
0
mirror of https://github.com/golang/go synced 2024-11-19 12:44:51 -07:00

runtime/trace: fix a typo in doc

Change-Id: I63f3d2edb09801c99957a1f744639523fb6d0b62
Reviewed-on: https://go-review.googlesource.com/60331
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Hana Kim 2017-08-30 12:24:37 -04:00 committed by Brad Fitzpatrick
parent 23c9db657e
commit f71cbc8a96

View 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`.