From 6ed77bdb7edee80370311d383b4d50c9eb487b99 Mon Sep 17 00:00:00 2001 From: rishitoshsingh Date: Fri, 31 Jul 2026 15:45:54 -0700 Subject: [PATCH] DOC: fix copy-paste bug in PyArrow storage example in text.rst --- doc/source/user_guide/text.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/user_guide/text.rst b/doc/source/user_guide/text.rst index 2f81c8795b86d..0f244fd288e7c 100644 --- a/doc/source/user_guide/text.rst +++ b/doc/source/user_guide/text.rst @@ -830,7 +830,7 @@ represented and behave as ``pd.NA``. pd.Series( ["a", "b", None, np.nan, pd.NA], - dtype=pd.StringDtype(storage="python", na_value=pd.NA) + dtype=pd.StringDtype(storage="pyarrow", na_value=pd.NA) ) Notice that the last three values are all inferred by pandas as being NA