aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/content/chapter3_data_types/lesson00_tuples/en.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/content/chapter3_data_types/lesson00_tuples/en.html b/src/content/chapter3_data_types/lesson00_tuples/en.html
index f121a9d..a5c708e 100644
--- a/src/content/chapter3_data_types/lesson00_tuples/en.html
+++ b/src/content/chapter3_data_types/lesson00_tuples/en.html
@@ -14,7 +14,7 @@
and <code>#(1.4, 10, 48)</code> has the type <code>#(Float, Int, Int)</code>.
</p>
<p>
- Tuples are most commonly used to return 2 or 3 values from a function. Other
- times it is often is clearer to use a <em>custom type</em>, which we will
- cover next.
+ Tuples are most commonly used to return 2 or 3 values from a function.
+ Often it is clearer to use a <em>custom type</em> where a tuple could
+ be used, We will cover custom types next.
</p>