Skip to content

Commit 0a736de

Browse files
authored
Fix signature of constructor in docstring (#2857)
1 parent b9a596d commit 0a736de

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/dataframe/dataframe.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ DataFrame(pairs::AbstractVector{<:Pair}; makeunique::Bool=false, copycols::Bool=
1313
DataFrame(ds::AbstractDict; copycols::Bool=true)
1414
DataFrame(kwargs..., copycols::Bool=true)
1515
16-
DataFrame(columns::AbstractVecOrMat, names::Union{AbstractVector, Symbol};
16+
DataFrame(columns::AbstractVecOrMat,
17+
names::AbstractVector{<:Union{AbstractVector, Symbol}};
1718
makeunique::Bool=false, copycols::Bool=true)
1819
1920
DataFrame(table; copycols::Union{Bool, Nothing}=nothing)

0 commit comments

Comments
 (0)