Skip to content

Commit 035b93f

Browse files
committed
Tweak more wording
1 parent 769737b commit 035b93f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
# gostackparse
55

6-
Package gostackparse parses goroutines stack trace as produced by [`panic()`](https://golang.org/pkg/builtin/#panic) or [`debug.Stack()`](https://golang.org/pkg/runtime/debug/#Stack) at ~300 MiB/s.
6+
Package gostackparse parses goroutines stack traces as produced by [`panic()`](https://golang.org/pkg/builtin/#panic) or [`debug.Stack()`](https://golang.org/pkg/runtime/debug/#Stack) at ~300 MiB/s.
77

88
Parsing this data can be useful for [Goroutine Profiling](https://github.com/DataDog/go-profiler-notes/blob/main/goroutine.md#feature-matrix) or analyzing crashes from log files.
99

gostackparse.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
// This product includes software developed at Datadog (https://www.datadoghq.com/).
44
// Copyright 2021 Datadog, Inc.
55

6-
// Package gostackparse parses goroutines stack trace dumps as produced by
7-
// panic() or runtime.Stack() at ~300 MiB/s.
6+
// Package gostackparse parses goroutines stack traces as produced by panic()
7+
// or runtime.Stack() at ~300 MiB/s.
88
package gostackparse
99

1010
import (

0 commit comments

Comments
 (0)