From 8739d6fb6262a58ef273d2e880f1cd3dae6df7bc Mon Sep 17 00:00:00 2001 From: Beni Bienz Date: Thu, 16 Sep 2021 11:23:54 +0100 Subject: [PATCH] Fix mistake in cut() docstring --- pandas/core/reshape/tile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/reshape/tile.py b/pandas/core/reshape/tile.py index 03dc124807f09..b1ecd75c84f4b 100644 --- a/pandas/core/reshape/tile.py +++ b/pandas/core/reshape/tile.py @@ -113,7 +113,7 @@ def cut( An array-like object representing the respective bin for each value of `x`. The type depends on the value of `labels`. - * True (default) : returns a Series for Series `x` or a + * None (default) : returns a Series for Series `x` or a Categorical for all other inputs. The values stored within are Interval dtype.