Skip to content

Commit c12b35d

Browse files
authored
Merge pull request #1359 empty types are aliases now
2 parents bb1fee1 + a558e56 commit c12b35d

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)