@@ -68,20 +68,20 @@ class TimedeltaIndex(
6868):
6969 """
7070 Immutable ndarray of timedelta64 data, represented internally as int64, and
71- which can be boxed to timedelta objects
71+ which can be boxed to timedelta objects.
7272
7373 Parameters
7474 ----------
7575 data : array-like (1-dimensional), optional
76- Optional timedelta-like data to construct index with
76+ Optional timedelta-like data to construct index with.
7777 unit : unit of the arg (D,h,m,s,ms,us,ns) denote the unit, optional
78- which is an integer/float number
79- freq : string or pandas offset object, optional
78+ Which is an integer/float number.
79+ freq : str or pandas offset object, optional
8080 One of pandas date offset strings or corresponding objects. The string
8181 'infer' can be passed in order to set the frequency of the index as the
82- inferred frequency upon creation
82+ inferred frequency upon creation.
8383 copy : bool
84- Make a copy of input ndarray
84+ Make a copy of input ndarray.
8585 start : starting value, timedelta-like, optional
8686 If data is None, start is used as the start point in generating regular
8787 timedelta data.
@@ -90,24 +90,24 @@ class TimedeltaIndex(
9090
9191 periods : int, optional, > 0
9292 Number of periods to generate, if generating index. Takes precedence
93- over end argument
93+ over end argument.
9494
9595 .. deprecated:: 0.24.0
9696
9797 end : end time, timedelta-like, optional
9898 If periods is none, generated index will extend to first conforming
99- time on or just past end argument
99+ time on or just past end argument.
100100
101101 .. deprecated:: 0.24. 0
102102
103- closed : string or None, default None
103+ closed : str or None, default None
104104 Make the interval closed with respect to the given frequency to
105- the 'left', 'right', or both sides (None)
105+ the 'left', 'right', or both sides (None).
106106
107107 .. deprecated:: 0.24. 0
108108
109109 name : object
110- Name to be stored in the index
110+ Name to be stored in the index.
111111
112112 Attributes
113113 ----------
0 commit comments