From 1e71b40e2093ba0823ced90408991c2b9e5d3cdf Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Mon, 16 Nov 2015 16:09:44 +0100 Subject: [PATCH] Fix typo in the docstring of dropna It should be 'default' instead of 'defalt'. --- pandas/core/frame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 1e40d77839d3c..5447574c9ea4e 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -2933,7 +2933,7 @@ def dropna(self, axis=0, how='any', thresh=None, subset=None, subset : array-like Labels along other axis to consider, e.g. if you are dropping rows these would be a list of columns to include - inplace : boolean, defalt False + inplace : boolean, default False If True, do operation inplace and return None. Returns