Skip to content

Commit 56c2019

Browse files
funnycrabjreback
authored andcommitted
DOC: Fix a comment typo in pandas/tools/concat.py (#15956)
1 parent f35209e commit 56c2019

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tools/concat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ def __init__(self, objs, axis=0, join='outer', join_axes=None,
278278
break
279279

280280
else:
281-
# filter out the empties if we have not multi-index possibiltes
281+
# filter out the empties if we have not multi-index possibilities
282282
# note to keep empty Series as it affect to result columns / name
283283
non_empties = [obj for obj in objs
284284
if sum(obj.shape) > 0 or isinstance(obj, Series)]

0 commit comments

Comments
 (0)