diff options
author | Araq <rumpf_a@web.de> | 2015-04-19 02:43:19 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2015-04-19 02:43:19 +0200 |
commit | 5cea6807e1b0b8bf2c12d3178ba782c2eaa03610 (patch) | |
tree | cbffe143e5b087b6f456a8f11232eb1fbd6357e2 /doc/manual | |
parent | 751232dc7cf81607ecd788f7f057222236f24b4d (diff) | |
download | Nim-5cea6807e1b0b8bf2c12d3178ba782c2eaa03610.tar.gz |
fixes #2476
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/type_bound_ops.txt | 4 |
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. |