Skip to content

Commit c0e1865

Browse files
committed
typo fixup
1 parent 3b1da67 commit c0e1865

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/arrow/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1909,7 +1909,7 @@ def _explode(self):
19091909
mask = counts == 0
19101910
if mask.any():
19111911
# pc.if_else here is similar to `values[mask] = fill_value`
1912-
# but this avoids a object-dtype round-trip.
1912+
# but this avoids an object-dtype round-trip.
19131913
pa_values = pc.if_else(~mask, values._pa_array, fill_value)
19141914
values = type(self)(pa_values)
19151915
counts = counts.copy()

0 commit comments

Comments
 (0)