Skip to content

Commit b8b84c7

Browse files
authored
Reordered Sections- shifted See Also to bottom
1 parent 7faa7b0 commit b8b84c7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pandas/core/series.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -2289,11 +2289,6 @@ def combine(self, other, func, fill_value=None):
22892289
Series
22902290
The result of combining the Series with the other object.
22912291
2292-
See Also
2293-
--------
2294-
Series.combine_first : Combine Series values, choosing the calling
2295-
Series' values first.
2296-
22972292
Examples
22982293
--------
22992294
>>> s1 = pd.Series([1, 2])
@@ -2317,6 +2312,11 @@ def combine(self, other, func, fill_value=None):
23172312
2 787
23182313
dtype: int64
23192314
2315+
See Also
2316+
--------
2317+
Series.combine_first : Combine Series values, choosing the calling
2318+
Series' values first.
2319+
23202320
"""
23212321
if fill_value is None:
23222322
fill_value = na_value_for_dtype(self.dtype, compat=False)

0 commit comments

Comments
 (0)