Skip to content

Commit 0a00632

Browse files
committed
Reorder Notes below ` Examples
1 parent c9a2490 commit 0a00632

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pandas/core/series.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -2379,10 +2379,6 @@ def combine_first(self, other):
23792379
"""
23802380
Combine Series values, choosing the calling Series's values first.
23812381
2382-
Notes
2383-
-----
2384-
Result index will be the union of the two indexes.
2385-
23862382
Parameters
23872383
----------
23882384
other : Series
@@ -2404,7 +2400,12 @@ def combine_first(self, other):
24042400
See Also
24052401
--------
24062402
Series.combine : Perform elementwise operation on two Series
2407-
using a given function.
2403+
using a given function
2404+
2405+
Notes
2406+
-----
2407+
Result index will be the union of the two indexes.
2408+
24082409
"""
24092410
new_index = self.index.union(other.index)
24102411
this = self.reindex(new_index, copy=False)

0 commit comments

Comments
 (0)