Skip to content

Commit f6099da

Browse files
committed
Fixed all typos
1 parent 8c928f5 commit f6099da

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pandas/core/series.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -2298,8 +2298,8 @@ def combine(self, other, func, fill_value=None):
22982298
The value(s) to be combined with the `Series`.
22992299
func : function
23002300
Function that takes two scalars as inputs and returns an element.
2301-
fill_value : scalar, default None
2302-
The optional value to assume when an index is missing from
2301+
fill_value : scalar, optional
2302+
The value to assume when an index is missing from
23032303
one Series or the other. The default specifies to use the
23042304
appropriate NaN value for the underlying dtype of the Series.
23052305
@@ -2386,12 +2386,13 @@ def combine_first(self, other):
23862386
23872387
Returns
23882388
-------
2389-
combined : Series
2389+
Series
2390+
The result of combining the Series with the other object.
23902391
23912392
See Also
23922393
--------
23932394
Series.combine : Perform elementwise operation on two Series
2394-
using a given function
2395+
using a given function
23952396
23962397
Notes
23972398
-----

0 commit comments

Comments
 (0)