Skip to content

Commit

Permalink
Add extra padding for output
Browse files Browse the repository at this point in the history
  • Loading branch information
rothgar committed Nov 28, 2022
1 parent b083161 commit 07bd3f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func main() {
w := new(tabwriter.Writer)

// minwidth, tabwidth, padding, padchar, flags
w.Init(os.Stdout, 8, 8, 0, '\t', 0)
w.Init(os.Stdout, 8, 8, 1, '\t', 0)

defer w.Flush()

Expand Down

0 comments on commit 07bd3f1

Please sign in to comment.