summary refs log tree commit diff stats
path: root/lib/pure/collections/queues.nim
diff options
context:
space:
mode:
authordef <dennis@felsin9.de>2016-02-25 04:04:45 +0100
committerdef <dennis@felsin9.de>2016-02-25 04:04:45 +0100
commit7177e0058b96a3f737d954ea3b146f4d21469fdf (patch)
treef5fa045af6a1e282bdeaa01236676ea431dcc1f1 /lib/pure/collections/queues.nim
parent6d6cf78229f0b9e92a257fad609ed4a4ecd2b8d1 (diff)
downloadNim-7177e0058b96a3f737d954ea3b146f4d21469fdf.tar.gz
Consistently use Channel instead of TChannel
Diffstat (limited to 'lib/pure/collections/queues.nim')
-rw-r--r--lib/pure/collections/queues.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/collections/queues.nim b/lib/pure/collections/queues.nim
index c35a2dc29..b9bf33bff 100644
--- a/lib/pure/collections/queues.nim
+++ b/lib/pure/collections/queues.nim
@@ -9,7 +9,7 @@
 
 ## Implementation of a `queue`:idx:. The underlying implementation uses a ``seq``.
 ## Note: For inter thread communication use
-## a `TChannel <channels.html>`_ instead.
+## a `Channel <channels.html>`_ instead.
 
 import math