Skip to content

Commit 16b0b03

Browse files
committed
Review (gfyoung)
1 parent 372cc24 commit 16b0b03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/text.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ The same alignment can be used when ``others`` is a ``DataFrame``:
306306
Concatenating a Series and many objects into a Series
307307
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
308308

309-
Several objects of type ``Series``, ``Index`` or ``np.ndarray`` can be arbitrarily combined in a list-like container (including iterators, ``dict``-views, etc.):
309+
An arbitrary combination of ``Series``, ``Index`` and ``np.ndarray`` (1-dimensional) can be passed in a list-like container (including iterators, ``dict``-views, etc.):
310310

311311
.. ipython:: python
312312

pandas/core/strings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2025,7 +2025,7 @@ def _get_series_list(self, others, ignore_index=False):
20252025
join_warn = join_warn or wnx
20262026

20272027
if depr_warn:
2028-
warnings.warn('list-likes other than Series, Index or '
2028+
warnings.warn('list-likes other than Series, Index, or '
20292029
'np.ndarray WITHIN another list-like '
20302030
'are deprecated and will be removed in '
20312031
'a future version.',

0 commit comments

Comments
 (0)