From f797ab803c43447f36e68bc03c121786bee84c51 Mon Sep 17 00:00:00 2001 From: Berra Marco Date: Sat, 10 Mar 2018 12:45:33 +0100 Subject: [PATCH] DOC: update the pandas.Series.tail docstring --- 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 a893b2ba1a189..c355dcb2c4bfe 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 --------