From 6ded91ec167e9b77e2f1e1efe964827cf891ec6d Mon Sep 17 00:00:00 2001 From: Thomas <0milieux_member@icloud.com> Date: Tue, 4 Apr 2023 18:57:58 +0200 Subject: [PATCH] Backport PR #52400: DOC: Typo: Fix inline code block to use double quotes instead of triple quotes --- doc/source/whatsnew/v2.0.0.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/whatsnew/v2.0.0.rst b/doc/source/whatsnew/v2.0.0.rst index 385b807b3ca82..1ad198dedd4c0 100644 --- a/doc/source/whatsnew/v2.0.0.rst +++ b/doc/source/whatsnew/v2.0.0.rst @@ -66,7 +66,7 @@ Below is a possibly non-exhaustive list of changes: 1. Instantiating using a numpy numeric array now follows the dtype of the numpy array. Previously, all indexes created from numpy numeric arrays were forced to 64-bit. Now, for example, ``Index(np.array([1, 2, 3]))`` will be ``int32`` on 32-bit systems, where - it previously would have been ``int64``` even on 32-bit systems. + it previously would have been ``int64`` even on 32-bit systems. Instantiating :class:`Index` using a list of numbers will still return 64bit dtypes, e.g. ``Index([1, 2, 3])`` will have a ``int64`` dtype, which is the same as previously. 2. The various numeric datetime attributes of :class:`DatetimeIndex` (:attr:`~DatetimeIndex.day`,