Skip to content

Commit a499cd4

Browse files
Fix doc warnings
1 parent 5d2d387 commit a499cd4

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Doc/whatsnew/3.14.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -569,12 +569,12 @@ heapq
569569

570570
* Make :mod:`heapq` max-heap functions
571571

572-
* :func:`heapify_max`,
573-
* :func:`heappush_max`,
574-
* :func:`heappop_max`,
575-
* :func:`heapreplace_max`
572+
* :func:`heapq.heapify_max`,
573+
* :func:`heapq.heappush_max`,
574+
* :func:`heapq.heappop_max`,
575+
* :func:`heapq.heapreplace_max`
576576

577-
public. And add the missing :func:`heappushpop_max` to
577+
public. And add the missing :func:`heapq.heappushpop_max` to
578578
both the C and Python implementation.
579579

580580
Previous underscored naming is kept for backwards compatibility.
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Make :mod:`heapq` max-heap functions
22

3-
* :func:`heapify_max`,
4-
* :func:`heappush_max`,
5-
* :func:`heappop_max`,
6-
* :func:`heapreplace_max`
3+
* :func:`heapq.heapify_max`,
4+
* :func:`heapq.heappush_max`,
5+
* :func:`heapq.heappop_max`,
6+
* :func:`heapq.heapreplace_max`
77

8-
public. And add the missing :func:`heappushpop_max` to
8+
public. And add the missing :func:`heapq.heappushpop_max` to
99
both the C and Python implementation.
1010

1111
Previous underscored naming is kept for backwards compatibility.

0 commit comments

Comments
 (0)