summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-12-20 22:39:05 +0100
committerAraq <rumpf_a@web.de>2014-12-20 22:39:05 +0100
commit7deb8b2e7b61a93ee42d5cadbc4170f83ac638a0 (patch)
tree4a0ca22928ee10111513c755a068d028ee9eb90d /lib
parent00a702baeb4ad5e55811ec7b0fbecafa69ef412a (diff)
downloadNim-7deb8b2e7b61a93ee42d5cadbc4170f83ac638a0.tar.gz
fixed typos so docgen works again
Diffstat (limited to 'lib')
-rw-r--r--lib/pure/collections/queues.nim2
-rw-r--r--lib/pure/sockets.nim2
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.}