summary refs log tree commit diff stats
path: root/doc/manual
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-04-19 02:43:19 +0200
committerAraq <rumpf_a@web.de>2015-04-19 02:43:19 +0200
commit5cea6807e1b0b8bf2c12d3178ba782c2eaa03610 (patch)
treecbffe143e5b087b6f456a8f11232eb1fbd6357e2 /doc/manual
parent751232dc7cf81607ecd788f7f057222236f24b4d (diff)
downloadNim-5cea6807e1b0b8bf2c12d3178ba782c2eaa03610.tar.gz
fixes #2476
Diffstat (limited to 'doc/manual')
-rw-r--r--doc/manual/type_bound_ops.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/type_bound_ops.txt b/doc/manual/type_bound_ops.txt
index efa5578d4..c707979fe 100644
--- a/doc/manual/type_bound_ops.txt
+++ b/doc/manual/type_bound_ops.txt
@@ -127,8 +127,8 @@ The signature has to be:
 .. code-block:: nim
   proc `=deepCopy`(x: T): T
 
-This mechanism is used by most data structures that support shared memory like
-channels to implement thread safe automatic memory management.
+This mechanism will be used by most data structures that support shared memory
+like channels to implement thread safe automatic memory management.
 
 The builtin ``deepCopy`` can even clone closures and their environments. See
 the documentation of `spawn`_ for details.