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 16b0b03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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
2 changes: 1 addition & 1 deletion pandas/core/strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2025,7 +2025,7 @@ 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 '
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.',
Expand Down

0 comments on commit 16b0b03

Please sign in to comment.