We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eae3743 commit 9abd14bCopy full SHA for 9abd14b
stacktrace.go
@@ -154,7 +154,7 @@ func newStackFormatter(b *buffer.Buffer) stackFormatter {
154
// the final runtime.main/runtime.goexit frame.
155
func (sf *stackFormatter) FormatStack(stack *stacktrace) {
156
// Note: On the last iteration, frames.Next() returns false, with a valid
157
- // frame, but we ignore this frame. The last frame is a a runtime frame which
+ // frame, but we ignore this frame. The last frame is a runtime frame which
158
// adds noise, since it's only either runtime.main or runtime.goexit.
159
for frame, more := stack.Next(); more; frame, more = stack.Next() {
160
sf.FormatFrame(frame)
0 commit comments