summary refs log tree commit diff stats
path: root/doc/manual
diff options
context:
space:
mode:
authorsuperfunc <superfunc@users.noreply.github.com>2017-09-15 12:49:00 -0700
committerAndreas Rumpf <rumpf_a@web.de>2017-09-15 21:49:00 +0200
commit248caaf27eb67556aea23c3ceff204237d4df9c3 (patch)
treec3a38ee5398e6633cc071122b51530d69f827464 /doc/manual
parent8ea78b1bc9dc0b4d883b4f0750ee84e93605b82a (diff)
downloadNim-248caaf27eb67556aea23c3ceff204237d4df9c3.tar.gz
Update docs on assignment operator (#6373)
Diffstat (limited to 'doc/manual')
-rw-r--r--doc/manual/types.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/manual/types.txt b/doc/manual/types.txt
index e6875f2df..2c4b019ad 100644
--- a/doc/manual/types.txt
+++ b/doc/manual/types.txt
@@ -570,8 +570,7 @@ order. The *names* of the fields also have to be identical.
 
 The assignment operator for tuples copies each component.
 The default assignment operator for objects copies each component. Overloading
-of the assignment operator for objects is not possible, but this will change
-in future versions of the compiler.
+of the assignment operator is described in `type-bound-operations-operator`_. 
 
 .. code-block:: nim