From de1494cc91e0ccd0376a9acbdf741c00ce34fb79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eirik=20Eylands=20Brand=C3=A5s?= <36015806+eirikbrandsaas@users.noreply.github.com> Date: Tue, 23 Mar 2021 10:10:51 +0000 Subject: [PATCH] Fix small typo in docs (Maybe I'm misunderstanding the manual here, but shouldn't the `row` be `df2` as in the other options for `cols`? --- src/dataframe/dataframe.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dataframe/dataframe.jl b/src/dataframe/dataframe.jl index 2416b866de..19a21f3dc2 100644 --- a/src/dataframe/dataframe.jl +++ b/src/dataframe/dataframe.jl @@ -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