From 0f7cb55f0f1732a478fc77a5725454f8f6758ac6 Mon Sep 17 00:00:00 2001 From: Tong Shen Date: Sun, 9 Apr 2017 18:39:49 +0800 Subject: [PATCH] DOC: Fix a comment typo in pandas/tools/concat.py --- pandas/tools/concat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/tools/concat.py b/pandas/tools/concat.py index 6405106118472..5df9a5abb78b2 100644 --- a/pandas/tools/concat.py +++ b/pandas/tools/concat.py @@ -278,7 +278,7 @@ def __init__(self, objs, axis=0, join='outer', join_axes=None, break else: - # filter out the empties if we have not multi-index possibiltes + # filter out the empties if we have not multi-index possibilities # note to keep empty Series as it affect to result columns / name non_empties = [obj for obj in objs if sum(obj.shape) > 0 or isinstance(obj, Series)]