From f394409b0053ffb8a24ffef34f1f758175a7ecf5 Mon Sep 17 00:00:00 2001 From: jebob Date: Tue, 1 Aug 2017 23:38:18 +0100 Subject: [PATCH] DOC: (de)type the return value of concat (#17079) (#17119) --- pandas/core/reshape/concat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/reshape/concat.py b/pandas/core/reshape/concat.py index 96603b6adc3b0..e199ec2710367 100644 --- a/pandas/core/reshape/concat.py +++ b/pandas/core/reshape/concat.py @@ -65,7 +65,7 @@ def concat(objs, axis=0, join='outer', join_axes=None, ignore_index=False, Returns ------- - concatenated : type of objects + concatenated : object, type of objs Notes -----