aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis Pilfold <louis@lpil.uk>2024-05-04 14:46:39 +0100
committerLouis Pilfold <louis@lpil.uk>2024-05-04 14:46:39 +0100
commitbd9665121fa0cd43dd9ca588c96a32b0905946ed (patch)
tree8e18829162e30f842e8c7a295761fb44285246b7
parent71351fcd918ef9e740f257e5040b4b1b6bae6645 (diff)
downloadtour-bd9665121fa0cd43dd9ca588c96a32b0905946ed.tar.gz
tour-bd9665121fa0cd43dd9ca588c96a32b0905946ed.zip
Format
-rw-r--r--src/content/chapter1_functions/lesson04_anonymous_functions/en.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/content/chapter1_functions/lesson04_anonymous_functions/en.html b/src/content/chapter1_functions/lesson04_anonymous_functions/en.html
index 69606dd..93e11a9 100644
--- a/src/content/chapter1_functions/lesson04_anonymous_functions/en.html
+++ b/src/content/chapter1_functions/lesson04_anonymous_functions/en.html
@@ -1,9 +1,9 @@
<p>
- As well as module-level named functions, Gleam has anonymous function
- literals, written with the <code>fn() { ... }</code> syntax.
+ As well as module-level named functions, Gleam has anonymous function
+ literals, written with the <code>fn() { ... }</code> syntax.
</p>
<p>Anonymous functions can be used interchangeably with named functions.</p>
<p>
- Anonymous functions can reference variables that were in scope when they
- were defined, making them <em>closures</em>.
+ Anonymous functions can reference variables that were in scope when they were
+ defined, making them <em>closures</em>.
</p>