Skip to content

Commit 8bdb920

Browse files
committed
Fixed "inline interpreted text..."
1 parent e544249 commit 8bdb920

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/core/window.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1404,7 +1404,7 @@ def _get_cov(X, Y):
14041404
otherwise defaults to `False`.
14051405
Not relevant for :class:`~pandas.Series`.
14061406
**kwargs
1407-
Under Review.
1407+
Unused.
14081408
14091409
Returns
14101410
-------
@@ -1430,7 +1430,7 @@ def _get_cov(X, Y):
14301430
all 1's), except for :class:`~pandas.DataFrame` inputs with `pairwise`
14311431
set to `True`.
14321432
1433-
Function will return `NaN`s for correlations of equal valued sequences;
1433+
Function will return ``NaN`` for correlations of equal valued sequences;
14341434
this is the result of a 0/0 division error.
14351435
14361436
When `pairwise` is set to `False`, only matching columns between `self` and
@@ -1446,7 +1446,7 @@ def _get_cov(X, Y):
14461446
Examples
14471447
--------
14481448
The below example shows a rolling calculation with a window size of
1449-
four matching the equivalent function call using `numpy.corrcoef`.
1449+
four matching the equivalent function call using :meth:`numpy.corrcoef`.
14501450
14511451
>>> v1 = [3, 3, 3, 5, 8]
14521452
>>> v2 = [3, 4, 4, 4, 8]

0 commit comments

Comments
 (0)