Skip to content

Commit

Permalink
#39046: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoudert committed Dec 13, 2024
1 parent abafad9 commit fc81b14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/data_structures/pairing_heap.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,7 @@ def _test_PairingHeap_of_n_integers(n=100):

# Test decrease key operations. We first push items in the heap with an
# excess of k in the value. Then we decrease the keys in a random order by
# random values until returning to the origianl values. We finally check the
# random values until returning to the original values. We finally check the
# validity of the resulting ordering.
cdef int k = 10
cdef list dec = [k] * n
Expand Down Expand Up @@ -1294,7 +1294,7 @@ def _test_PairingHeap_of_n_hashables(n=100):

# Test decrease key operations. We first push items in the heap with an
# excess of k in the value. Then we decrease the keys in a random order by
# random values until returning to the origianl values. We finally check the
# random values until returning to the original values. We finally check the
# validity of the resulting ordering.
cdef int k = 10
cdef dict dec = {item: k for item in items}
Expand Down

0 comments on commit fc81b14

Please sign in to comment.