Skip to content

Commit

Permalink
DOC: Typo fix in ordered_merge warning (#14271)
Browse files Browse the repository at this point in the history
  • Loading branch information
jerenrich authored and jorisvandenbossche committed Sep 22, 2016
1 parent ebc4ac1 commit d9e51fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tools/merge.py
Expand Up @@ -146,7 +146,7 @@ def ordered_merge(left, right, on=None,
left_by=None, right_by=None,
fill_method=None, suffixes=('_x', '_y')):

warnings.warn("ordered_merge is deprecated and replace by merged_ordered",
warnings.warn("ordered_merge is deprecated and replaced by merge_ordered",
FutureWarning, stacklevel=2)
return merge_ordered(left, right, on=on,
left_on=left_on, right_on=right_on,
Expand Down

0 comments on commit d9e51fe

Please sign in to comment.