Skip to content
Prev Previous commit
Next Next commit
fixed doc typo
  • Loading branch information
Marcon Laforet authored and Marcon Laforet committed Mar 10, 2018
commit af464c8d606ca44a1fb84f0992fead488e432b3c
6 changes: 3 additions & 3 deletions pandas/core/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -7869,7 +7869,7 @@ def _doc_parms(cls):
Return whether all elements are True over series or dataframe axis.

Returns True if all elements within a series or along a dataframe
axis or are non-zero, not-empty or not-False."""
axis are non-zero, not-empty or not-False."""

_all_examples = """\
Examples
Expand Down Expand Up @@ -7909,8 +7909,8 @@ def _doc_parms(cls):
_all_see_also = """\
See also
--------
pandas.Series.all : Return if all elements are True
pandas.DataFrame.any : Return if one (or more) elements are True
pandas.Series.all : Return True if all elements are True
pandas.DataFrame.any : Return True if one (or more) elements are True
"""
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add Series.all

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jreback its been added


_cnum_doc = """
Expand Down