about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBryan Dunsmore <dunsmoreb@gmail.com>2013-04-10 07:06:18 -0500
committerBryan Dunsmore <dunsmoreb@gmail.com>2013-04-10 07:06:18 -0500
commit08bc392d94726fb04154ce3993c3d519e480b24b (patch)
treeaadce5117c0aff2954e9dfa51e41998f32c7a4a1
parentf0d0cbfff8d1aadda1cdb3b914361f3355c9a9cc (diff)
downloadrust-08bc392d94726fb04154ce3993c3d519e480b24b.tar.gz
rust-08bc392d94726fb04154ce3993c3d519e480b24b.zip
Update destructuring to reference tuples section.
-rw-r--r--doc/tutorial.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 1ac33fe6585..92cf5014d87 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -498,7 +498,8 @@ matching in order to bind names to the contents of data
 types.
 
 > ***Note:*** The following code makes use of tuples (`(float, float)`) which
-> are explained later. For now you can think of tuples as a list of items.
+> are explained in section 5.3. For now you can think of tuples as a list of
+> items.
 
 ~~~~
 fn angle(vector: (float, float)) -> float {