Skip to content

Commit 91fa807

Browse files
committed
feedback on import
1 parent 682143f commit 91fa807

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

singleflight/singleflight.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
// mechanism.
77
package singleflight // import "golang.org/x/sync/singleflight"
88

9-
import "sync"
10-
import "sync/atomic"
9+
import (
10+
"sync"
11+
"sync/atomic"
12+
)
1113

1214
// call is an in-flight or completed singleflight.Do call
1315
type call struct {

0 commit comments

Comments
 (0)