From 64b727807de70dd7ca41ab1595828570d799e06c Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Sat, 13 Sep 2014 14:47:23 -0400 Subject: [PATCH] be vague about tuple size Fixes #17222 --- src/doc/guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/guide.md b/src/doc/guide.md index 140536543d93d..a42c07b7670fe 100644 --- a/src/doc/guide.md +++ b/src/doc/guide.md @@ -943,8 +943,8 @@ fn main() { ``` Even though Rust functions can only return one value, a tuple _is_ one value, -that happens to be made up of two. You can also see in this example how you -can destructure a pattern returned by a function, as well. +that happens to contain multiple values. You can also see in this example how +you can destructure a pattern returned by a function, as well. Tuples are a very simple data structure, and so are not often what you want. Let's move on to their bigger sibling, structs.