Skip to content

Commit a558e56

Browse files
committed
fix empty types
1 parent bb1fee1 commit a558e56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/empty/empty.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package empty
33
import "sync"
44

55
type (
6-
Chan chan struct{}
7-
ChanReadonly <-chan struct{}
8-
Struct struct{}
6+
Chan = chan struct{}
7+
ChanReadonly = <-chan struct{}
8+
Struct = struct{}
99
)
1010

1111
// DoNotCopy can be embedded in a struct to help prevent shallow copies.

0 commit comments

Comments
 (0)