Skip to content

Commit 91bc97a

Browse files
committed
remove space
Signed-off-by: Andrew Thornton <[email protected]>
1 parent 5925f47 commit 91bc97a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/process/stacktraces_processlist.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func WriteProcesses(out io.Writer, processes []*Process, processCount int, gorou
2626
}
2727
if len(processes) > 1 {
2828
for _, process := range processes[1:] {
29-
if _, err := fmt.Fprintf(out, "%s | \n", indent); err != nil {
29+
if _, err := fmt.Fprintf(out, "%s |\n", indent); err != nil {
3030
return err
3131
}
3232
if err := WriteProcess(out, process, indent+" ", flat); err != nil {

0 commit comments

Comments
 (0)