Skip to content

Commit 76bced5

Browse files
committed
fix order of imports
1 parent b41219c commit 76bced5

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/cmd/fix/main.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ import (
1414
"go/scanner"
1515
"go/token"
1616
"go/version"
17+
"internal/diff"
1718
"io"
1819
"io/fs"
1920
"os"
2021
"path/filepath"
2122
"sort"
2223
"strings"
23-
24-
"internal/diff"
2524
)
2625

2726
var (

src/cmd/fix/main_test.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ import (
88
"fmt"
99
"go/ast"
1010
"go/parser"
11-
"strings"
12-
"testing"
13-
1411
"internal/diff"
1512
"internal/testenv"
13+
"strings"
14+
"testing"
1615
)
1716

1817
type testCase struct {

0 commit comments

Comments
 (0)