aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>