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)) }