From 8dd5a70ef4bf951c4cdecef3ef9a27ddfc6a03fb Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 3 Apr 2013 18:52:28 -0300 Subject: [PATCH] Update tut. to not sound like I missed a section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The sentence "Remember that `(float, float)` is a tuple of two floats" sounds like you've already read a section on tuples, but that section comes later. Changing it to "Assuming that ..." makes it more about taking the writer's word that the syntax is how tuples are defined. --- doc/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index 42b0d5a585aee..92e2f55b02d12 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -495,7 +495,7 @@ omitted. A powerful application of pattern matching is *destructuring*: matching in order to bind names to the contents of data -types. Remember that `(float, float)` is a tuple of two floats: +types. Assuming that `(float, float)` is a tuple of two floats: ~~~~ fn angle(vector: (float, float)) -> float {