From ec631cef2b51b1dd25035360429a360433c9cfee Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Sat, 10 Mar 2018 17:12:41 +0100 Subject: [PATCH] DOC: update the pandas.Series.tail docstring (#20176) --- pandas/core/generic.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 9f2112729a503..d5bdeb7fe1a4d 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -3669,12 +3669,12 @@ def tail(self, n=5): Returns ------- - obj_tail : type of caller - The last n rows of the caller object. + type of caller + The last `n` rows of the caller object. See Also -------- - pandas.DataFrame.head + pandas.DataFrame.head : The first `n` rows of the caller object. Examples --------