hashsum: changed output format when listing algorithms

This commit is contained in:
albertony
2022-06-08 14:26:47 +02:00
parent 98e1d3ee73
commit 01674949a1

View File

@@ -410,7 +410,7 @@ func HelpString(indent int) string {
help.WriteString(padding)
help.WriteString("Supported hashes are:\n")
for _, h := range supported {
fmt.Fprintf(&help, "%s * %v\n", padding, h.String())
fmt.Fprintf(&help, "%s- %v\n", padding, h.String())
}
return help.String()
}