We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95376bc commit fe322beCopy full SHA for fe322be
pandas/core/ops.py
@@ -593,14 +593,14 @@ def _is_offset(self, arr_or_obj):
593
594
595
def _align_method_SERIES(left, right, align_asobject=False):
596
- """ algin lhs and rhs Series """
+ """ align lhs and rhs Series """
597
598
# ToDo: Different from _align_method_FRAME, list, tuple and ndarray
599
# are not coerced here
600
# because Series has inconsistencies described in #13637
601
602
if isinstance(right, ABCSeries):
603
- # avoid repated alignment
+ # avoid repeated alignment
604
if not left.index.equals(right.index):
605
606
if align_asobject:
0 commit comments