Skip to content

Commit

Permalink
Fix lint warn
Browse files Browse the repository at this point in the history
  • Loading branch information
k1LoW committed Aug 12, 2024
1 parent 97cdc62 commit 5d684b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func (traces stackTraces) String() string {
if i > 0 {
sb.WriteString("\n")
}
sb.WriteString(fmt.Sprintf("%s", errws.Error()))
sb.WriteString(errws.Error())
for _, frame := range errws.Frames {
sb.WriteString(fmt.Sprintf("\n%s\n\t%s:%d", frame.Name, frame.File, frame.Line))
}
Expand Down

0 comments on commit 5d684b6

Please # to comment.