Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
disintegration committed Sep 9, 2016
1 parent 3feac43 commit 6b73831
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions font.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ import (
"compress/gzip"
"io"

"github.com/golang/freetype/truetype"
"github.com/golang/freetype/truetype"
)


Expand All @@ -224,15 +224,15 @@ func init() {
if err != nil {
panic(err)
}
defer gz.Close()
defer gz.Close()

var buf bytes.Buffer
io.Copy(&buf, gz)
if err != nil {
panic(err)
}

defaultFont, err = truetype.Parse(buf.Bytes())
defaultFont, err = truetype.Parse(buf.Bytes())
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 6b73831

Please sign in to comment.