You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`fmt.Println` will add spaces between elements when there is multiple parameters sent.
When wrapping the colors parameters were combined using `fmt.Sprint(a...)` - which does not space out parameters.
Use `fmt.Sprintln` to combine parameters.
Fixesfatih#218
The documentation for Color.Println says:
However, this is not the case. The method uses
c.wrap
aroundfmt.Sprint
, which has the following space separation:Example problem:
Expected output is "Foo Bar", real output is "FooBar".
The text was updated successfully, but these errors were encountered: