diff options
author | Oscar NihlgÄrd <oscarnihlgard@gmail.com> | 2019-01-28 09:58:37 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-01-28 09:58:37 +0100 |
commit | 9402c82e803d133e0b845a7c5c79c261781e7d8d (patch) | |
tree | 64cef5bc336a6d0038dcb47a4e3b1cd30ed434d7 /doc | |
parent | 2b0ed9995d6fd64873ad0b42c2953944b0384908 (diff) | |
download | Nim-9402c82e803d133e0b845a7c5c79c261781e7d8d.tar.gz |
Cleanup heapqueue module (#10476)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lib.rst b/doc/lib.rst index 082c3c0bd..d00591e10 100644 --- a/doc/lib.rst +++ b/doc/lib.rst @@ -92,7 +92,7 @@ Collections and algorithms The underlying implementation uses a ``seq``. * `heapqueue <heapqueue.html>`_ - This module implements Heap queue (a.k.a. priority queue) algorithm. + Implementation of a heap data structure that can be used as a priority queue. * `intsets <intsets.html>`_ Efficient implementation of a set of ints as a sparse bit set. |