diff options
| author | Bryan Dunsmore <dunsmoreb@gmail.com> | 2013-04-10 07:06:18 -0500 |
|---|---|---|
| committer | Bryan Dunsmore <dunsmoreb@gmail.com> | 2013-04-10 07:06:18 -0500 |
| commit | 08bc392d94726fb04154ce3993c3d519e480b24b (patch) | |
| tree | aadce5117c0aff2954e9dfa51e41998f32c7a4a1 | |
| parent | f0d0cbfff8d1aadda1cdb3b914361f3355c9a9cc (diff) | |
| download | rust-08bc392d94726fb04154ce3993c3d519e480b24b.tar.gz rust-08bc392d94726fb04154ce3993c3d519e480b24b.zip | |
Update destructuring to reference tuples section.
| -rw-r--r-- | doc/tutorial.md | 3 |
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 { |
