Update tut. to not sound like I missed a section

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.
This commit is contained in:
Brett Cannon 2013-04-03 18:52:28 -03:00
parent 6153aae809
commit 8dd5a70ef4

View File

@ -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 {