Skip to content

Commit 1ab981d

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

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/source/text.rst

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2025,8 +2025,8 @@ 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 '
2029-
'np.ndarray WITHIN another list-like '
2028+
warnings.warn('list-likes other than Series, Index, '
2029+
'or np.ndarray WITHIN another list-like '
20302030
'are deprecated and will be removed in '
20312031
'a future version.',
20322032
FutureWarning, stacklevel=3)

0 commit comments

Comments
 (0)