Brad Fitzpatrick 11 years ago
parent
commit
79903f0a86
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gotrack.go

+ 1 - 1
gotrack.go

@@ -52,7 +52,7 @@ func curGoroutineID() uint64 {
 	defer littleBuf.Put(bp)
 	defer littleBuf.Put(bp)
 	b := *bp
 	b := *bp
 	b = b[:runtime.Stack(b, false)]
 	b = b[:runtime.Stack(b, false)]
-	// Parse the 4707 otu of "goroutine 4707 ["
+	// Parse the 4707 out of "goroutine 4707 ["
 	b = bytes.TrimPrefix(b, goroutineSpace)
 	b = bytes.TrimPrefix(b, goroutineSpace)
 	i := bytes.IndexByte(b, ' ')
 	i := bytes.IndexByte(b, ' ')
 	if i < 0 {
 	if i < 0 {