diff --git a/book/src/language-tour/functions.md b/book/src/language-tour/functions.md index bcdb0d16..3738bbb4 100644 --- a/book/src/language-tour/functions.md +++ b/book/src/language-tour/functions.md @@ -6,7 +6,7 @@ fn f(x) { } ``` -l functions in aiken are pure without side effect, so all functions also must return some value. +Functions in aiken are pure without side effect, so all functions also must return some value. A function with no return value (like above) will error. Providing arg types: