Skip to content

Commit ad0539b

Browse files
ShaharNavehWillAyd
authored andcommitted
DOC: Cleaned docstrings (#30158)
1 parent 2470690 commit ad0539b

File tree

2 files changed

+124
-93
lines changed

2 files changed

+124
-93
lines changed

pandas/_libs/join.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def left_join_indexer_unique(join_t[:] left, join_t[:] right):
300300
@cython.boundscheck(False)
301301
def left_join_indexer(ndarray[join_t] left, ndarray[join_t] right):
302302
"""
303-
Two-pass algorithm for monotonic indexes. Handles many-to-one merges
303+
Two-pass algorithm for monotonic indexes. Handles many-to-one merges.
304304
"""
305305
cdef:
306306
Py_ssize_t i, j, k, nright, nleft, count
@@ -403,7 +403,7 @@ def left_join_indexer(ndarray[join_t] left, ndarray[join_t] right):
403403
@cython.boundscheck(False)
404404
def inner_join_indexer(ndarray[join_t] left, ndarray[join_t] right):
405405
"""
406-
Two-pass algorithm for monotonic indexes. Handles many-to-one merges
406+
Two-pass algorithm for monotonic indexes. Handles many-to-one merges.
407407
"""
408408
cdef:
409409
Py_ssize_t i, j, k, nright, nleft, count

0 commit comments

Comments
 (0)