From 06f99bdce2d1bb8382adaea18009e3fecc5bc01b Mon Sep 17 00:00:00 2001 From: Noora Husseini Date: Sun, 3 Feb 2019 15:02:50 +0000 Subject: [PATCH] DOC: small doc fix to Series.repeat --- pandas/core/series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/series.py b/pandas/core/series.py index a25aa86a47927..e8c6cf9096948 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -1120,7 +1120,7 @@ def repeat(self, repeats, axis=None): Returns ------- - repeated_series : Series + Series Newly created Series with repeated elements. See Also