diff options
author | Araq <rumpf_a@web.de> | 2014-12-20 22:39:05 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-12-20 22:39:05 +0100 |
commit | 7deb8b2e7b61a93ee42d5cadbc4170f83ac638a0 (patch) | |
tree | 4a0ca22928ee10111513c755a068d028ee9eb90d /lib/pure | |
parent | 00a702baeb4ad5e55811ec7b0fbecafa69ef412a (diff) | |
download | Nim-7deb8b2e7b61a93ee42d5cadbc4170f83ac638a0.tar.gz |
fixed typos so docgen works again
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/collections/queues.nim | 2 | ||||
-rw-r--r-- | lib/pure/sockets.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/collections/queues.nim b/lib/pure/collections/queues.nim index 1c0e63ddf..defce657f 100644 --- a/lib/pure/collections/queues.nim +++ b/lib/pure/collections/queues.nim @@ -9,7 +9,7 @@ ## Implementation of a queue. The underlying implementation uses a ``seq``. ## Note: For inter thread communication use -## a `TChannel <channels.html>``_ instead. +## a `TChannel <channels.html>`_ instead. import math diff --git a/lib/pure/sockets.nim b/lib/pure/sockets.nim index e67321a59..79f409179 100644 --- a/lib/pure/sockets.nim +++ b/lib/pure/sockets.nim @@ -25,7 +25,7 @@ ## the `asyncio <asyncio.html>`_ module. ## ## Since version 0.10.2 this module is deprecated. Use the `net <net.html>`_ -## or the ``rawsockets <rawsockets.html>`_ module instead. +## or the `rawsockets <rawsockets.html>`_ module instead. {.deprecated.} |