summary refs log tree commit diff stats
path: root/lib/pure
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-10-01 08:44:09 +0200
committerAraq <rumpf_a@web.de>2013-10-01 08:44:09 +0200
commit1a792d46d0bdcdf16fa928a45aca65afbde7921d (patch)
tree9c4ce85abb43c0142d3fb3456dd8a6f34cf7ef6d /lib/pure
parent7a2fad1e35d7f0c53cfb779240804a794a161e07 (diff)
downloadNim-1a792d46d0bdcdf16fa928a45aca65afbde7921d.tar.gz
first version of the debug GC; doesn't work yet
Diffstat (limited to 'lib/pure')
-rw-r--r--lib/pure/sockets.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/sockets.nim b/lib/pure/sockets.nim
index 73a189fee..fe4d3c2a4 100644
--- a/lib/pure/sockets.nim
+++ b/lib/pure/sockets.nim
@@ -11,11 +11,11 @@
 ## of sockets. Sockets are buffered by default meaning that data will be
 ## received in ``BufferSize`` (4000) sized chunks, buffering
 ## behaviour can be disabled by setting the ``buffered`` parameter when calling
-## the ``socket`` function to `False`. Be aware that some functions may not yet
+## the ``socket`` function to `false`. Be aware that some functions may not yet
 ## support buffered sockets (mainly the recvFrom function).
 ##
 ## Most procedures raise EOS on error, but some may return ``-1`` or a boolean
-## ``False``.
+## ``false``.
 ##
 ## SSL is supported through the OpenSSL library. This support can be activated
 ## by compiling with the ``-d:ssl`` switch. When an SSL socket is used it will