summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2016-11-28 10:29:05 +0100
committerGitHub <noreply@github.com>2016-11-28 10:29:05 +0100
commit1a85c5231b6ba3bc0c2db0eba1e86989cd7092e1 (patch)
tree696b34ae960e856cfbc7144136307215fa9cc131 /doc
parent98d24291f94bf4ec9dd51d389a374023b585b4e7 (diff)
parent2c146445bcb38dbd17f9988d60efc354a20c2d5b (diff)
downloadNim-1a85c5231b6ba3bc0c2db0eba1e86989cd7092e1.tar.gz
Merge pull request #5044 from endragor/deques
Added deques module, deprecating queues
Diffstat (limited to 'doc')
-rw-r--r--doc/lib.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/lib.rst b/doc/lib.rst
index 828889968..8bb602b78 100644
--- a/doc/lib.rst
+++ b/doc/lib.rst
@@ -77,8 +77,9 @@ Collections and algorithms
 * `lists <lists.html>`_
   Nim linked list support. Contains singly and doubly linked lists and
   circular lists ("rings").
-* `queues <queues.html>`_
-  Implementation of a queue. The underlying implementation uses a ``seq``.
+* `deques <deques.html>`_
+  Implementation of a double-ended queue.
+  The underlying implementation uses a ``seq``.
 * `intsets <intsets.html>`_
   Efficient implementation of a set of ints as a sparse bit set.
 * `critbits <critbits.html>`_