Skip to content

Commit

Permalink
DOC: Fix typos in merge_asof() docstring (pandas-dev#15729)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisaycock authored and AnkurDedania committed Mar 21, 2017
1 parent 7e34190 commit 16a45a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pandas/tools/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ def merge_asof(left, right, on=None,
- A "nearest" search selects the row in the right DataFrame whose 'on'
key is closest in absolute distance to the left's key.
The default is "backward" and is the compatible in versions below 0.20.0.
The default is "backward" and is compatible in versions below 0.20.0.
The direction parameter was added in version 0.20.0 and introduces
"forward" and "nearest".
Expand Down Expand Up @@ -340,13 +340,13 @@ def merge_asof(left, right, on=None,
suffixes : 2-length sequence (tuple, list, ...)
Suffix to apply to overlapping column names in the left and right
side, respectively
side, respectively.
tolerance : integer or Timedelta, optional, default None
select asof tolerance within this range; must be compatible
to the merge index.
Select asof tolerance within this range; must be compatible
with the merge index.
allow_exact_matches : boolean, default True
- If True, allow matching the same 'on' value
- If True, allow matching with the same 'on' value
(i.e. less-than-or-equal-to / greater-than-or-equal-to)
- If False, don't match the same 'on' value
(i.e., stricly less-than / strictly greater-than)
Expand Down

0 comments on commit 16a45a8

Please sign in to comment.