Skip to content

Commit 0124148

Browse files
authored
BUG: doc string error (#51103)
1 parent d3f3d5d commit 0124148

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/indexes/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ class Index(IndexOpsMixin, PandasObject):
332332
Index(['a', 'b', 'c'], dtype='object')
333333
334334
>>> pd.Index([1, 2, 3], dtype="uint8")
335-
NumericIndex([1, 2, 3], dtype='uint8')
335+
Index([1, 2, 3], dtype='uint8')
336336
"""
337337

338338
# To hand over control to subclasses

0 commit comments

Comments
 (0)