chriswalz / bit

Bit is a modern Git CLI
Apache License 2.0
6.05k stars 106 forks source link

Fix flags typo #46

Closed markruler closed 3 years ago

markruler commented 3 years ago

https://github.com/chriswalz/bit/blob/master/cmd/util.go#L456

list := strings.Split(str, ".\n\n")

The delimiter is set to .\n\n, so I modified all flag strings to end with it.

before

image

after

image

chriswalz commented 3 years ago

LGTM. @markruler Out of curiosity did you identify the erroneously manually or using some sort of automated way?

markruler commented 3 years ago

LGTM. @markruler Out of curiosity did you identify the erroneously manually or using some sort of automated way?

Just manually.