From 519eefca336718b9b0a9e32f5c55beed29b9c380 Mon Sep 17 00:00:00 2001 From: monosans Date: Thu, 8 Dec 2022 21:44:18 +0300 Subject: [PATCH] Fix a typo in the docstring --- pandas/core/generic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index c659f8d0d9a4d..c5a931fe29ab1 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -6411,7 +6411,7 @@ def convert_dtypes( By default, ``convert_dtypes`` will attempt to convert a Series (or each Series in a DataFrame) to dtypes that support ``pd.NA``. By using the options ``convert_string``, ``convert_integer``, ``convert_boolean`` and - ``convert_boolean``, it is possible to turn off individual conversions + ``convert_floating``, it is possible to turn off individual conversions to ``StringDtype``, the integer extension types, ``BooleanDtype`` or floating extension types, respectively.