DOC: update the pandas.Series.tail docstring (#20176) · harisbal/pandas@ec631ce (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

Commit ec631ce

xrmxTomAugspurger

authored and

committed

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -3669,12 +3669,12 @@ def tail(self, n=5):
3669 3669
3670 3670 Returns
3671 3671 -------
3672 - obj_tail : type of caller
3673 - The last n rows of the caller object.
3672 + type of caller
3673 + The last `n` rows of the caller object.
3674 3674
3675 3675 See Also
3676 3676 --------
3677 - pandas.DataFrame.head
3677 + pandas.DataFrame.head : The first `n` rows of the caller object.
3678 3678
3679 3679 Examples
3680 3680 --------