From dfd2c39463f9286d34a5264185ef39c5fd24cce0 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Sun, 23 Sep 2012 11:27:47 -0400 Subject: [PATCH] gofmt --- 096-line-filter.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/096-line-filter.go b/096-line-filter.go index 56934b3..4616ccf 100644 --- a/096-line-filter.go +++ b/096-line-filter.go @@ -18,7 +18,7 @@ func main() { newline := []byte("\n") // The buffered reader gives us `ReadLine`. - in := bufio.NewReader(os.Stdin) + in := bufio.NewReader(os.Stdin) out := os.Stdout // If successful, each `ReadLine` returns bytes and a @@ -33,7 +33,7 @@ func main() { return } if err != nil { - panic (err) + panic(err) } // `bytes.ToUpper` works directly on bytes, so we don't