Skip to content

Commit

Permalink
DOC: Correct doc mistake in combiner func
Browse files Browse the repository at this point in the history
  • Loading branch information
gfyoung committed Feb 18, 2019
1 parent 659e0ca commit 1cde111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/getting_started/basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ So, for instance, to reproduce :meth:`~DataFrame.combine_first` as above:
.. ipython:: python
def combiner(x, y):
np.where(pd.isna(x), y, x)
return np.where(pd.isna(x), y, x)
df1.combine(df2, combiner)
.. _basics.stats:
Expand Down

0 comments on commit 1cde111

Please sign in to comment.