From e478f660d8983896637635f616d3501b6ad1f4dc Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Fri, 13 Feb 2015 12:53:54 -0500 Subject: [PATCH] Don't specify tuple layout. This isn't something we want to guarantee. --- src/doc/reference.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/doc/reference.md b/src/doc/reference.md index 9c51f6bad6fee..c2c87fb36dd21 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: ```