From ac9e694d595a95c75fd96b149bf5e7edce366027 Mon Sep 17 00:00:00 2001 From: zofrex Date: Sun, 7 Apr 2013 22:08:40 +0100 Subject: [PATCH] Update manual for single-element tuple types --- doc/rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/rust.md b/doc/rust.md index da4b5146f34..e9c88fc3412 100644 --- a/doc/rust.md +++ b/doc/rust.md @@ -2579,7 +2579,7 @@ to the record type-constructor. The differences are as follows: Tuple types and values are denoted by listing the types or values of their elements, respectively, in a parenthesized, comma-separated -list. Single-element tuples are not legal; all tuples have two or more values. +list. The members of a tuple are laid out in memory contiguously, like a record, in order specified by the tuple type.