Skip to content

Commit d5139bb

Browse files
DOC: misc sphinx directive fixes (#34960)
1 parent ed351c4 commit d5139bb

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

pandas/core/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def random_state(state=None):
404404
If receives `None`, returns np.random.
405405
If receives anything else, raises an informative ValueError.
406406
407-
..versionchanged:: 1.1.0
407+
.. versionchanged:: 1.1.0
408408
409409
array-like and BitGenerator (for NumPy>=1.18) object now passed to
410410
np.random.RandomState() as seed

pandas/core/frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8213,7 +8213,7 @@ def cov(
82138213
Delta degrees of freedom. The divisor used in calculations
82148214
is ``N - ddof``, where ``N`` represents the number of elements.
82158215
8216-
versionadded:: 1.1.0
8216+
.. versionadded:: 1.1.0
82178217
82188218
Returns
82198219
-------

pandas/core/generic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4809,7 +4809,7 @@ def sample(
48094809
random number generator
48104810
If np.random.RandomState, use as numpy RandomState object.
48114811
4812-
..versionchanged:: 1.1.0
4812+
.. versionchanged:: 1.1.0
48134813
48144814
array-like and BitGenerator (for NumPy>=1.17) object now passed to
48154815
np.random.RandomState() as seed

pandas/core/series.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2342,7 +2342,7 @@ def cov(
23422342
Delta degrees of freedom. The divisor used in calculations
23432343
is ``N - ddof``, where ``N`` represents the number of elements.
23442344
2345-
versionadded:: 1.1.0
2345+
.. versionadded:: 1.1.0
23462346
23472347
Returns
23482348
-------

pandas/plotting/_core.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def hist_series(
6767
legend : bool, default False
6868
Whether to show the legend.
6969
70-
..versionadded:: 1.1.0
70+
.. versionadded:: 1.1.0
7171
7272
**kwargs
7373
To be passed to the actual plotting function.
@@ -179,7 +179,7 @@ def hist_frame(
179179
legend : bool, default False
180180
Whether to show the legend.
181181
182-
..versionadded:: 1.1.0
182+
.. versionadded:: 1.1.0
183183
184184
**kwargs
185185
All other plotting keyword arguments to be passed to

0 commit comments

Comments
 (0)