diff options
author | Wesley Moore <wes@wezm.net> | 2024-01-20 09:19:37 +1000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-01-20 10:10:36 +0000 |
commit | 88a7eb9c161d0d3678cdb4d6226df7a1dff9a055 (patch) | |
tree | bdcdd61ab6ac32df28b9c57cf4134c6ec28736b6 /src/content/chapter2_flow_control/lesson01_case_expressions | |
parent | 3bcc4ac8394246df4cee0e8480d321259463b5eb (diff) | |
download | tour-88a7eb9c161d0d3678cdb4d6226df7a1dff9a055.tar.gz tour-88a7eb9c161d0d3678cdb4d6226df7a1dff9a055.zip |
Fix "called called" in pattern matching
Diffstat (limited to 'src/content/chapter2_flow_control/lesson01_case_expressions')
-rw-r--r-- | src/content/chapter2_flow_control/lesson01_case_expressions/text.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/chapter2_flow_control/lesson01_case_expressions/text.html b/src/content/chapter2_flow_control/lesson01_case_expressions/text.html index b3e4000..07ff421 100644 --- a/src/content/chapter2_flow_control/lesson01_case_expressions/text.html +++ b/src/content/chapter2_flow_control/lesson01_case_expressions/text.html @@ -5,7 +5,7 @@ </p> <p> It allows the programmer to say "if the data has this shape then run this - code", a process called called <em>pattern matching</em>. + code", a process called <em>pattern matching</em>. </p> <p> Gleam performs <em>exhaustiveness checking</em> to ensure that the patterns in |