Skip to content

Commit be609c3

Browse files
committed
chore: remove duplicate word in comments
Signed-off-by: Abirdcfly <[email protected]>
1 parent eae3743 commit be609c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stacktrace.go

Lines changed: 1 addition & 1 deletion
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)