diff options
author | Louis Pilfold <louis@lpil.uk> | 2024-01-18 19:55:18 +0000 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2024-01-18 19:55:18 +0000 |
commit | 7d30b9a5e50676881e47fb3ee87b65db4b020493 (patch) | |
tree | 7e29430bb95c029b27214827ee77f2600179761f /src/content/chapter2_flow_control | |
parent | 96c7f41d3c3ac315f9b23b0c874fd1d6044c41b0 (diff) | |
download | tour-7d30b9a5e50676881e47fb3ee87b65db4b020493.tar.gz tour-7d30b9a5e50676881e47fb3ee87b65db4b020493.zip |
Remove `
Diffstat (limited to 'src/content/chapter2_flow_control')
-rw-r--r-- | src/content/chapter2_flow_control/lesson02_variable_patterns/text.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/content/chapter2_flow_control/lesson02_variable_patterns/text.html b/src/content/chapter2_flow_control/lesson02_variable_patterns/text.html index 8154979..b3e4000 100644 --- a/src/content/chapter2_flow_control/lesson02_variable_patterns/text.html +++ b/src/content/chapter2_flow_control/lesson02_variable_patterns/text.html @@ -1,7 +1,8 @@ <p> The case expression is the most common kind of flow control in Gleam code. It - is similar to `switch` in some other languages, but more powerful than most. -</p> + is similar to <code>switch</code> in some other languages, but more powerful + than most. +</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>. |