Skip to content

Commit

Permalink
style(*): format imports using gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
jo3-l committed Dec 11, 2020
1 parent 08367bc commit fadaefc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion examplefiles_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@
package template_test

import (
"github.com/jonas747/template"
"io"
"io/ioutil"
"log"
"os"
"path/filepath"

"github.com/jonas747/template"
)

// templateFile defines the contents of a template to be stored in a file, for testing.
Expand Down
3 changes: 2 additions & 1 deletion examplefunc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
package template_test

import (
"github.com/jonas747/template"
"log"
"os"
"strings"

"github.com/jonas747/template"
)

// This example demonstrates a custom function to process template text.
Expand Down
3 changes: 2 additions & 1 deletion multi_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@ package template
import (
"bytes"
"fmt"
"github.com/jonas747/template/parse"
"testing"

"github.com/jonas747/template/parse"
)

const (
Expand Down
3 changes: 2 additions & 1 deletion template.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
package template

import (
"github.com/jonas747/template/parse"
"reflect"
"sync"

"github.com/jonas747/template/parse"
)

// common holds the information shared by related templates.
Expand Down

0 comments on commit fadaefc

Please sign in to comment.