Skip to content

Commit

Permalink
Fix docstring typo
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Aug 31, 2018
1 parent d5cf648 commit bd4430e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -4383,7 +4383,7 @@ def duplicated(self, subset=None, keep='first', return_inverse=False):
>>> data = {'species': ['lama', 'cow', 'lama', 'ant', 'lama', 'bee'],
'type': ['mammal'] * 3 + ['insect', 'mammal', 'insect']}
>>> animals = pd.DataFrame(data, index=[1, 4, 9, 16, 25])
>>> animals = pd.DataFrame(data, index=[1, 4, 9, 16, 25, 36])
>>> animals
species type
1 lama mammal
Expand Down

0 comments on commit bd4430e

Please sign in to comment.