aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhuman154 <46430360+human154@users.noreply.github.com>2024-02-21 23:55:09 -0500
committerLouis Pilfold <louis@lpil.uk>2024-02-22 10:10:39 +0000
commit5f49767dafaacc0f8c721793206d13fbe654da99 (patch)
tree3b331e4b74a4c1f3a01cc1d7266522ec1ffaf12b
parent39a30bad34cc4b1eca42ee57c30061b76c439798 (diff)
downloadtour-5f49767dafaacc0f8c721793206d13fbe654da99.tar.gz
tour-5f49767dafaacc0f8c721793206d13fbe654da99.zip
Change wording regarding usage of custom types vs tuples
-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>