summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorPavelVozenilek <pavel_vozenilek@hotmail.com>2014-06-15 22:53:09 +0200
committerPavelVozenilek <pavel_vozenilek@hotmail.com>2014-06-15 22:53:09 +0200
commit21423e5107b958422eeffd1f095713ac415bbf00 (patch)
tree843bed205b8855a4b498f070d117fdace6a2118b
parent79b08488f725db10c29afe52250897fc830496e3 (diff)
downloadNim-21423e5107b958422eeffd1f095713ac415bbf00.tar.gz
making clear structural equivalency for tuples doc
-rw-r--r--doc/tut1.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tut1.txt b/doc/tut1.txt
index 8c6f140eb..9874f267b 100644
--- a/doc/tut1.txt
+++ b/doc/tut1.txt
@@ -1385,8 +1385,8 @@ Tuples
 A tuple type defines various named *fields* and an *order* of the fields.
 The constructor ``()`` can be used to construct tuples. The order of the
 fields in the constructor must match the order in the tuple's definition.
-Different tuple-types are *equivalent* if they specify the same fields of
-the same type in the same order.
+Different tuple-types are *equivalent* if they specify fields of
+the same type and of the same name in the same order.
 
 The assignment operator for tuples copies each component. The notation
 ``t.field`` is used to access a tuple's field. Another notation is