Skip to content

Commit 0e90f66

Browse files
DOC: fix PR07 for pandas.merge_ordered (#58936)
1 parent 5fd883a commit 0e90f66

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ci/code_checks.sh

-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
467467
-i "pandas.json_normalize RT03,SA01" \
468468
-i "pandas.merge PR07" \
469469
-i "pandas.merge_asof PR07,RT03" \
470-
-i "pandas.merge_ordered PR07" \
471470
-i "pandas.period_range RT03,SA01" \
472471
-i "pandas.plotting.andrews_curves RT03,SA01" \
473472
-i "pandas.plotting.lag_plot RT03,SA01" \

pandas/core/reshape/merge.py

+2
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,9 @@ def merge_ordered(
316316
Parameters
317317
----------
318318
left : DataFrame or named Series
319+
First pandas object to merge.
319320
right : DataFrame or named Series
321+
Second pandas object to merge.
320322
on : label or list
321323
Field names to join on. Must be found in both DataFrames.
322324
left_on : label or list, or array-like

0 commit comments

Comments
 (0)