Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix small typo in docs #2670

Merged
merged 1 commit into from
Mar 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/dataframe/dataframe.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ The exact behavior of `append!` depends on the `cols` argument:
* If `cols == :subset` then `append!` behaves like for `:intersect` but if some
column is missing in `df2` then a `missing` value is pushed to `df`.
* If `cols == :union` then `append!` adds columns missing in `df` that are present
in `row`, for columns present in `df` but missing in `row` a `missing` value
in `df2`, for columns present in `df` but missing in `df2` a `missing` value
is pushed.

If `promote=true` and element type of a column present in `df` does not allow
Expand Down