summaryrefslogtreecommitdiff
path: root/libgo/go/go/ast/import.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/go/ast/import.go')
-rw-r--r--libgo/go/go/ast/import.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/go/ast/import.go b/libgo/go/go/ast/import.go
index 5c794c3e79..6b27fe822e 100644
--- a/libgo/go/go/ast/import.go
+++ b/libgo/go/go/ast/import.go
@@ -31,7 +31,7 @@ func SortImports(fset *token.FileSet, f *File) {
specs := d.Specs[:0]
for j, s := range d.Specs {
if j > i && fset.Position(s.Pos()).Line > 1+fset.Position(d.Specs[j-1].End()).Line {
- // j begins a new run. End this one.
+ // j begins a new run. End this one.
specs = append(specs, sortSpecs(fset, f, d.Specs[i:j])...)
i = j
}