Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: Fix versionadded directive typos in IntervalIndex #21649

Merged
merged 1 commit into from
Jun 27, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pandas/core/indexes/interval.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class IntervalIndex(IntervalMixin, Index):
dtype : dtype or None, default None
If None, dtype will be inferred

..versionadded:: 0.23.0
.. versionadded:: 0.23.0

Attributes
----------
Expand Down Expand Up @@ -438,7 +438,7 @@ def from_breaks(cls, breaks, closed='right', name=None, copy=False,
dtype : dtype or None, default None
If None, dtype will be inferred

..versionadded:: 0.23.0
.. versionadded:: 0.23.0

Examples
--------
Expand Down Expand Up @@ -568,7 +568,7 @@ def from_intervals(cls, data, closed=None, name=None, copy=False,
dtype : dtype or None, default None
If None, dtype will be inferred

..versionadded:: 0.23.0
.. versionadded:: 0.23.0

Examples
--------
Expand Down Expand Up @@ -619,7 +619,7 @@ def from_tuples(cls, data, closed='right', name=None, copy=False,
dtype : dtype or None, default None
If None, dtype will be inferred

..versionadded:: 0.23.0
.. versionadded:: 0.23.0

Examples
--------
Expand Down Expand Up @@ -671,7 +671,7 @@ def to_tuples(self, na_tuple=True):
Returns NA as a tuple if True, ``(nan, nan)``, or just as the NA
value itself if False, ``nan``.

..versionadded:: 0.23.0
.. versionadded:: 0.23.0

Examples
--------
Expand Down