Skip to content

Commit ed487e0

Browse files
Docs formatting df join validate (#54311)
update docs to remove bold on first list item and remove unncessary full stop.
1 parent d1dd468 commit ed487e0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pandas/core/frame.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10183,8 +10183,7 @@ def join(
1018310183
* left: use calling frame's index (or column if on is specified)
1018410184
* right: use `other`'s index.
1018510185
* outer: form union of calling frame's index (or column if on is
10186-
specified) with `other`'s index, and sort it.
10187-
lexicographically.
10186+
specified) with `other`'s index, and sort it lexicographically.
1018810187
* inner: form intersection of calling frame's index (or column if
1018910188
on is specified) with `other`'s index, preserving the order
1019010189
of the calling's one.
@@ -10204,7 +10203,7 @@ def join(
1020410203
If specified, checks if join is of specified type.
1020510204
1020610205
* "one_to_one" or "1:1": check if join keys are unique in both left
10207-
and right datasets.
10206+
and right datasets.
1020810207
* "one_to_many" or "1:m": check if join keys are unique in left dataset.
1020910208
* "many_to_one" or "m:1": check if join keys are unique in right dataset.
1021010209
* "many_to_many" or "m:m": allowed, but does not result in checks.

0 commit comments

Comments
 (0)