From 8279c592df59f6612cc9d687bfd270a11167df26 Mon Sep 17 00:00:00 2001 From: Micah Kendall Date: Sun, 27 Nov 2022 00:19:03 +1100 Subject: [PATCH] fix typo --- book/src/language-tour/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: