Skip to content

Commit

Permalink
fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
bkamins committed Sep 25, 2023
1 parent 269cc55 commit c129cff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dataframe/insertion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ julia> push!(df, NamedTuple(), cols=:subset)
7 │ 1.0 missing 1.0
8 │ missing missing missing
julia> push!(DataFrame(a=1, b=2), (3, 4), (b=6, a=5))
julia> push!(DataFrame(a=1, b=2), (3, 4), (5, 6))
3×2 DataFrame
Row │ a b
│ Int64 Int64
Expand Down Expand Up @@ -630,7 +630,7 @@ julia> pushfirst!(df, NamedTuple(), cols=:subset)
7 │ b 2 missing
8 │ c 3 missing
julia> pushfirst!(DataFrame(a=1, b=2), (3, 4), (b=6, a=5))
julia> pushfirst!(DataFrame(a=1, b=2), (3, 4), (5, 6))
3×2 DataFrame
Row │ a b
│ Int64 Int64
Expand Down

0 comments on commit c129cff

Please sign in to comment.