Skip to content

Commit fe322be

Browse files
committed
mod
1 parent 95376bc commit fe322be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/ops.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -593,14 +593,14 @@ def _is_offset(self, arr_or_obj):
593593

594594

595595
def _align_method_SERIES(left, right, align_asobject=False):
596-
""" algin lhs and rhs Series """
596+
""" align lhs and rhs Series """
597597

598598
# ToDo: Different from _align_method_FRAME, list, tuple and ndarray
599599
# are not coerced here
600600
# because Series has inconsistencies described in #13637
601601

602602
if isinstance(right, ABCSeries):
603-
# avoid repated alignment
603+
# avoid repeated alignment
604604
if not left.index.equals(right.index):
605605

606606
if align_asobject:

0 commit comments

Comments
 (0)