Skip to content

Commit

Permalink
Update .str.replace docstring
Browse files Browse the repository at this point in the history
As suggested by @jreback
  • Loading branch information
Joost Kranendonk committed Jan 4, 2017
1 parent 6ecc43d commit 91c883d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/core/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,8 @@ def str_replace(arr, pat, repl, n=-1, case=True, flags=0):
----------
pat : string
Character sequence or regular expression
repl : string or function
Replacement string or a function, which passed the match object and
repl : string or callable
Replacement string or a callable, it's passed the match object and
must return a replacement string to be used. See :func:`re.sub`.
n : int, default -1 (all)
Number of replacements to make from start
Expand Down

0 comments on commit 91c883d

Please sign in to comment.