Skip to content

Commit 9abd14b

Browse files
authored
chore: remove duplicate word in comments (#1169)
1 parent eae3743 commit 9abd14b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stacktrace.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ func newStackFormatter(b *buffer.Buffer) stackFormatter {
154154
// the final runtime.main/runtime.goexit frame.
155155
func (sf *stackFormatter) FormatStack(stack *stacktrace) {
156156
// 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
157+
// frame, but we ignore this frame. The last frame is a runtime frame which
158158
// adds noise, since it's only either runtime.main or runtime.goexit.
159159
for frame, more := stack.Next(); more; frame, more = stack.Next() {
160160
sf.FormatFrame(frame)

0 commit comments

Comments
 (0)