Skip to content

Commit

Permalink
DOC: Correct doc mistake in combiner func (pandas-dev#25360)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfyoung authored and alimcmaster1 committed Jun 3, 2019
1 parent 4e75dfe commit 484fce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/getting_started/basics.rst
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 484fce0

Please sign in to comment.