Skip to content

Commit 948d5da

Browse files
authored
Reorder Notes below ` Examples
1 parent b8b84c7 commit 948d5da

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
@@ -2356,10 +2356,6 @@ def combine_first(self, other):
23562356
"""
23572357
Combine Series values, choosing the calling Series's values first.
23582358
2359-
Notes
2360-
-----
2361-
Result index will be the union of the two indexes.
2362-
23632359
Parameters
23642360
----------
23652361
other : Series
@@ -2382,6 +2378,11 @@ def combine_first(self, other):
23822378
--------
23832379
Series.combine : Perform elementwise operation on two Series
23842380
using a given function
2381+
2382+
Notes
2383+
-----
2384+
Result index will be the union of the two indexes.
2385+
23852386
"""
23862387
new_index = self.index.union(other.index)
23872388
this = self.reindex(new_index, copy=False)

0 commit comments

Comments
 (0)