Skip to content

Commit 0df0fda

Browse files
committed
fix after the review
1 parent 659c6a8 commit 0df0fda

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/DataAPI.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,9 @@ end
8686
All(cols...)
8787
Select the union of the selections in `cols`. If `cols == ()`, select all columns.
8888
"""
89-
struct All{T}
89+
struct All{T<:Tuple}
9090
cols::T
91+
All(args...) = new{typeof(args)}(args)
9192
end
9293

93-
All(args...) = All(args)
94-
9594
end # module

0 commit comments

Comments
 (0)