aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhuman154 <46430360+human154@users.noreply.github.com>2024-02-22 08:42:33 -0500
committerLouis Pilfold <louis@lpil.uk>2024-03-05 17:24:41 +0000
commite1d6c114b618b35856d63de64430fc1c7c065170 (patch)
treecc16c4eac1c75174ee348d447bb540b8c02a2313 /src
parent81cd2703e27d02231f70fd023d52a75fabcef53f (diff)
downloadtour-e1d6c114b618b35856d63de64430fc1c7c065170.tar.gz
tour-e1d6c114b618b35856d63de64430fc1c7c065170.zip
display the word value as code again
Diffstat (limited to 'src')
-rw-r--r--src/content/chapter1_functions/lesson06_generic_functions/code.gleam2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/chapter1_functions/lesson06_generic_functions/code.gleam b/src/content/chapter1_functions/lesson06_generic_functions/code.gleam
index bdfcb4e..7b7c8db 100644
--- a/src/content/chapter1_functions/lesson06_generic_functions/code.gleam
+++ b/src/content/chapter1_functions/lesson06_generic_functions/code.gleam
@@ -14,7 +14,7 @@ pub fn main() {
io.debug(twice("Hello", exclaim))
}
-// The name value refers to the same type multiple times
+// The name `value` refers to the same type multiple times
fn twice(argument: value, function: fn(value) -> value) -> value {
function(function(argument))
}