Skip to content

Commit c9a2490

Browse files
committed
Reordered Sections- shifted See Also to bottom
1 parent c921539 commit c9a2490

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
@@ -2308,11 +2308,6 @@ def combine(self, other, func, fill_value=None):
23082308
Series
23092309
The result of combining the Series with the other object.
23102310
2311-
See Also
2312-
--------
2313-
Series.combine_first : Combine Series values, choosing the calling
2314-
Series' values first.
2315-
23162311
Examples
23172312
--------
23182313
>>> s1 = pd.Series([1, 2])
@@ -2336,6 +2331,11 @@ def combine(self, other, func, fill_value=None):
23362331
2 787
23372332
dtype: int64
23382333
2334+
See Also
2335+
--------
2336+
Series.combine_first : Combine Series values, choosing the calling
2337+
Series' values first.
2338+
23392339
"""
23402340
if fill_value is None:
23412341
fill_value = na_value_for_dtype(self.dtype, compat=False)

0 commit comments

Comments
 (0)