Skip to content

Commit

Permalink
Review (gfyoung)
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Aug 9, 2018
1 parent 372cc24 commit 1ab981d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/source/text.rst
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ The same alignment can be used when ``others`` is a ``DataFrame``:
Concatenating a Series and many objects into a Series
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

.. ipython:: python
Expand Down
4 changes: 2 additions & 2 deletions pandas/core/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2025,8 +2025,8 @@ def _get_series_list(self, others, ignore_index=False):
join_warn = join_warn or wnx

if depr_warn:
warnings.warn('list-likes other than Series, Index or '
'np.ndarray WITHIN another list-like '
warnings.warn('list-likes other than Series, Index, '
'or np.ndarray WITHIN another list-like '
'are deprecated and will be removed in '
'a future version.',
FutureWarning, stacklevel=3)
Expand Down

0 comments on commit 1ab981d

Please sign in to comment.