Skip to content

Commit 4f19053

Browse files
committed
docstring fixups
1 parent 76c3b70 commit 4f19053

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pandas/core/frame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13810,8 +13810,8 @@ def quantile(
1381013810
0.1 1 1
1381113811
0.5 3 100
1381213812
13813-
Specifying `numeric_only=False` will also compute the quantile of
13814-
datetime and timedelta data.
13813+
Specifying `numeric_only=False` will compute the quantiles for all
13814+
columns.
1381513815
1381613816
>>> df = pd.DataFrame(
1381713817
... {

pandas/core/series.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3112,8 +3112,8 @@ def combine(
31123112
31133113
Combine the Series and `other` using `func` to perform elementwise
31143114
selection for combined Series.
3115-
`fill_value` is assumed when value is missing at some index
3116-
from one of the two objects being combined.
3115+
`fill_value` is assumed when value is not present at some index
3116+
from one of the two Series being combined.
31173117
31183118
Parameters
31193119
----------

0 commit comments

Comments
 (0)