Skip to content

Commit

Permalink
Fix typo in cudf.core.column.string.extract docs (#7253)
Browse files Browse the repository at this point in the history
change: on -> one

I read the contributing guidelines, but since this is just a documentation fix, I'm not sure which apply.

Great library, I just got started using it. A little rough around the edges, but great so far, and well worth some of the added steps.

Authors:
  - Alan deLevie (@adelevie)
  - AJ Schmidt (@ajschmidt8)

Approvers:
  - GALI PREM SAGAR (@galipremsagar)
  - Keith Kraus (@kkraus14)
  - Michael Wang (@isVoid)
  - Ray Douglass (@raydouglass)

URL: #7253
  • Loading branch information
adelevie authored Feb 5, 2021
1 parent e2f6952 commit 3fef7f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ Here are some guidelines to help the review process go smoothly.
features or make changes out of the scope of those requested by the reviewer
(doing this just add delays as already reviewed code ends up having to be
re-reviewed/it is hard to tell what is new etc!). Further, please do not
rebase your branch on master/force push/rewrite history, doing any of these
rebase your branch on main/force push/rewrite history, doing any of these
causes the context of any comments made by reviewers to be lost. If
conflicts occur against master they should be resolved by merging master
conflicts occur against main they should be resolved by merging main
into the branch used for making the pull request.
Many thanks in advance for your cooperation!
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/cudf/core/column/string.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ def extract(
pat : str
Regular expression pattern with capturing groups.
expand : bool, default True
If True, return DataFrame with on column per capture group.
If True, return DataFrame with one column per capture group.
If False, return a Series/Index if there is one capture group or
DataFrame if there are multiple capture groups.
Expand Down

0 comments on commit 3fef7f7

Please sign in to comment.