Skip to content

Commit b9b06b3

Browse files
Backport PR pandas-dev#52400 on branch 2.0.x (DOC: Typo: Fix inline code block to use double quotes instead of triple quotes) (pandas-dev#52416)
Backport PR pandas-dev#52400: DOC: Typo: Fix inline code block to use double quotes instead of triple quotes Co-authored-by: Thomas <[email protected]>
1 parent d1d69e2 commit b9b06b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/source/whatsnew/v2.0.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Below is a possibly non-exhaustive list of changes:
6666
1. Instantiating using a numpy numeric array now follows the dtype of the numpy array.
6767
Previously, all indexes created from numpy numeric arrays were forced to 64-bit. Now,
6868
for example, ``Index(np.array([1, 2, 3]))`` will be ``int32`` on 32-bit systems, where
69-
it previously would have been ``int64``` even on 32-bit systems.
69+
it previously would have been ``int64`` even on 32-bit systems.
7070
Instantiating :class:`Index` using a list of numbers will still return 64bit dtypes,
7171
e.g. ``Index([1, 2, 3])`` will have a ``int64`` dtype, which is the same as previously.
7272
2. The various numeric datetime attributes of :class:`DatetimeIndex` (:attr:`~DatetimeIndex.day`,

0 commit comments

Comments
 (0)