From 0c9e7e95c2d52d486d80172728f6e8068345745c Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Mon, 1 Oct 2012 13:21:03 -0700 Subject: [PATCH] tighten comments --- src/063-line-filters/line-filters.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/063-line-filters/line-filters.go b/src/063-line-filters/line-filters.go index f8115bf..715a9fb 100644 --- a/src/063-line-filters/line-filters.go +++ b/src/063-line-filters/line-filters.go @@ -26,9 +26,9 @@ func main() { for { inBytes, pfx, err := in.ReadLine() - // The `EOF` error is expected when we reach the end - // of the input, so exit gracefully in that case. - // Otherwise there is a problem. + // The `EOF` error is expected when we reach the + // end of the input, so exit gracefully in that + // case. Otherwise there is a problem. if err == io.EOF { return } @@ -36,8 +36,8 @@ func main() { panic(err) } - // Write out the upercased bytes, checking for an error - // here as well. + // Write out the uppercased bytes, checking for an + // error here as well. outBytes := bytes.ToUpper(inBytes) _, err = out.Write(outBytes) if err != nil {