about summary refs log tree commit diff
diff options
context:
space:
mode:
authorzofrex <zofrex@gmail.com>2013-04-07 22:08:40 +0100
committerzofrex <zofrex@gmail.com>2013-04-07 22:08:40 +0100
commitac9e694d595a95c75fd96b149bf5e7edce366027 (patch)
tree30e3d4c04b720e337932c21476e07bfdd659790a
parentd1e2d295f89276661367ba3fe19589b4a7934538 (diff)
downloadrust-ac9e694d595a95c75fd96b149bf5e7edce366027.tar.gz
rust-ac9e694d595a95c75fd96b149bf5e7edce366027.zip
Update manual for single-element tuple types
-rw-r--r--doc/rust.md2
1 files changed, 1 insertions, 1 deletions
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.