Skip to content

Commit bd4430e

Browse files
committed
Fix docstring typo
1 parent d5cf648 commit bd4430e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4383,7 +4383,7 @@ def duplicated(self, subset=None, keep='first', return_inverse=False):
43834383
43844384
>>> data = {'species': ['lama', 'cow', 'lama', 'ant', 'lama', 'bee'],
43854385
'type': ['mammal'] * 3 + ['insect', 'mammal', 'insect']}
4386-
>>> animals = pd.DataFrame(data, index=[1, 4, 9, 16, 25])
4386+
>>> animals = pd.DataFrame(data, index=[1, 4, 9, 16, 25, 36])
43874387
>>> animals
43884388
species type
43894389
1 lama mammal

0 commit comments

Comments
 (0)