diff options
author | human154 <46430360+human154@users.noreply.github.com> | 2024-02-21 23:55:09 -0500 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-02-22 10:10:39 +0000 |
commit | 5f49767dafaacc0f8c721793206d13fbe654da99 (patch) | |
tree | 3b331e4b74a4c1f3a01cc1d7266522ec1ffaf12b /src | |
parent | 39a30bad34cc4b1eca42ee57c30061b76c439798 (diff) | |
download | tour-5f49767dafaacc0f8c721793206d13fbe654da99.tar.gz tour-5f49767dafaacc0f8c721793206d13fbe654da99.zip |
Change wording regarding usage of custom types vs tuples
Diffstat (limited to 'src')
-rw-r--r-- | src/content/chapter3_data_types/lesson00_tuples/en.html | 6 |
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> |