hashsum: changed output format when listing algorithms

This commit is contained in:
albertony
2025-08-27 23:36:28 +02:00
parent 98e1d3ee73
commit 01674949a1
+1 -1
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()
}