about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-02-13 12:53:54 -0500
committerSteve Klabnik <steve@steveklabnik.com>2015-02-13 12:53:54 -0500
commite478f660d8983896637635f616d3501b6ad1f4dc (patch)
tree76b4ccec8a15acb2181c63755e2eeddaf0929159 /src/doc/reference.md
parentcf636c233dfeef5abf0de8fb35e23c0a161810d2 (diff)
downloadrust-e478f660d8983896637635f616d3501b6ad1f4dc.tar.gz
rust-e478f660d8983896637635f616d3501b6ad1f4dc.zip
Don't specify tuple layout.
This isn't something we want to guarantee.
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 9c51f6bad6f..c2c87fb36dd 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -3502,9 +3502,6 @@ elements, respectively, in a parenthesized, comma-separated list.
 Because tuple elements don't have a name, they can only be accessed by
 pattern-matching.
 
-The members of a tuple are laid out in memory contiguously, in order specified
-by the tuple type.
-
 An example of a tuple type and its use:
 
 ```