Skip to content

DOC: Fixed PR06 docstrings errors in pandas.timedelta_range #28719

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

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
12 changes: 6 additions & 6 deletions pandas/core/indexes/timedeltas.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,17 +717,17 @@ def timedelta_range(
Parameters
----------
start : string or timedelta-like, default None
start : str or timedelta-like, default None
Left bound for generating timedeltas
end : string or timedelta-like, default None
end : str or timedelta-like, default None
Right bound for generating timedeltas
periods : integer, default None
periods : int, default None
Number of periods to generate
freq : string or DateOffset, default 'D'
freq : str or DateOffset, default 'D'
Frequency strings can have multiples, e.g. '5H'
name : string, default None
name : str, default None
Name of the resulting TimedeltaIndex
closed : string, default None
closed : str, default None
Make the interval closed with respect to the given frequency to
the 'left', 'right', or both sides (None)
Expand Down