From cbe9fd7f60d18ff2c1960d720332a3809891802d Mon Sep 17 00:00:00 2001 From: Moshe Kaplan Date: Tue, 20 Feb 2024 11:23:27 -0500 Subject: [PATCH] dsintro.rst: Clarify Series constructor information Clarify sentence leading into Series constructor explanation --- doc/source/user_guide/dsintro.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/user_guide/dsintro.rst b/doc/source/user_guide/dsintro.rst index d1e981ee1bbdc..f0231c4641521 100644 --- a/doc/source/user_guide/dsintro.rst +++ b/doc/source/user_guide/dsintro.rst @@ -41,8 +41,8 @@ Here, ``data`` can be many different things: * an ndarray * a scalar value (like 5) -The passed **index** is a list of axis labels. Thus, this separates into a few -cases depending on what **data is**: +The passed **index** is a list of axis labels. The constructor's behavior +depends on **data**'s type: **From ndarray**