Skip to content

Commit 99e64b4

Browse files
committed
remove hyphens
1 parent f16e4e7 commit 99e64b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/cliui/agent.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -374,13 +374,13 @@ func (d ConnDiags) Write(w io.Writer) {
374374
if len(client) > 0 {
375375
_, _ = fmt.Fprint(w, "Possible client-side issues with direct connection:\n\n")
376376
for _, msg := range client {
377-
_, _ = fmt.Fprintf(w, " - %s\n\n", msg)
377+
_, _ = fmt.Fprintf(w, " %s\n\n", msg)
378378
}
379379
}
380380
if len(agent) > 0 {
381381
_, _ = fmt.Fprint(w, "Possible agent-side issues with direct connections:\n\n")
382382
for _, msg := range agent {
383-
_, _ = fmt.Fprintf(w, " - %s\n\n", msg)
383+
_, _ = fmt.Fprintf(w, " %s\n\n", msg)
384384
}
385385
}
386386
}

0 commit comments

Comments
 (0)