From 5153f22c9cbce1c8fdbd4e77e64c89407ef8d133 Mon Sep 17 00:00:00 2001 From: WAKAYAMA shirou Date: Wed, 23 Apr 2014 10:33:55 +0900 Subject: [PATCH] go fmt --- common.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common.go b/common.go index 62bc5ef..cfb977f 100644 --- a/common.go +++ b/common.go @@ -35,12 +35,12 @@ func ReadLines(filename string) ([]string, error) { func byteToString(orig []byte) string { n := -1 l := -1 - for i, b := range orig{ + for i, b := range orig { // skip left side null - if l == -1 && b == 0{ + if l == -1 && b == 0 { continue } - if l == -1{ + if l == -1 { l = i }