Skip to content

docs: Fix alignment in "merge_ordered" docstring #53522

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pandas/core/reshape/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def merge_ordered(
... }
... )
>>> df1
key lvalue group
key lvalue group
0 a 1 a
1 c 2 a
2 e 3 a
Expand All @@ -304,7 +304,7 @@ def merge_ordered(

>>> df2 = pd.DataFrame({"key": ["b", "c", "d"], "rvalue": [1, 2, 3]})
>>> df2
key rvalue
key rvalue
0 b 1
1 c 2
2 d 3
Expand Down