summary refs log tree commit diff stats
path: root/doc/manual.txt
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2014-07-01 00:13:07 +0200
committerAraq <rumpf_a@web.de>2014-07-01 00:13:07 +0200
commite5f2a8ade4da6df5c79078954fa5a60ad4e8c16f (patch)
tree7b72f4ec778ca8fb4c7a02eef762bff5a356a668 /doc/manual.txt
parent4d5b7b7b2e31f8d333f69ea6c8d4e2a6387cce05 (diff)
downloadNim-e5f2a8ade4da6df5c79078954fa5a60ad4e8c16f.tar.gz
fixes #1268
Diffstat (limited to 'doc/manual.txt')
-rw-r--r--doc/manual.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/manual.txt b/doc/manual.txt
index 8a7cfba54..b39efb740 100644
--- a/doc/manual.txt
+++ b/doc/manual.txt
@@ -1089,7 +1089,8 @@ types with no overhead and few abstraction possibilities. The constructor ``()``
 can be used to construct tuples. The order of the fields in the constructor
 must match the order of the tuple's definition. Different tuple-types are
 *equivalent* if they specify the same fields of the same type in the same
-order.
+order. The *names* of the fields also have to be identical but this might
+change in a future version of the language.
 
 The assignment operator for tuples copies each component.
 The default assignment operator for objects copies each component. Overloading