summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvan Jegen <s.jegen@gmail.com>2015-08-21 20:11:58 +0200
committerSilvan Jegen <s.jegen@gmail.com>2015-08-21 20:11:58 +0200
commit1fd8119b4a5c723c96d45c0f373377ae3a8ad20f (patch)
tree22866b153e5a98b6b7694e8cd0dec6b0c004bbc8
parent1bed4acf77cdcf2220ba9ffc55936ba71aa65458 (diff)
Adjust tabwriter option
-rw-r--r--gwic.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/gwic.go b/gwic.go
index 5cbbd93..427ec05 100644
--- a/gwic.go
+++ b/gwic.go
@@ -45,7 +45,7 @@ func main() {
fmt.Printf("Need string to search for. Exiting...\n")
os.Exit(1)
}
- tw = tabwriter.NewWriter(os.Stdout, 1, 2, 1, ' ', 0)
+ tw = tabwriter.NewWriter(os.Stdout, 1, 1, 1, ' ', 0)
reader := bufio.NewReader(os.Stdin)
all, err := ioutil.ReadAll(reader)