From eb948aa0274b40c012d2ebcc46d087cc3604ec63 Mon Sep 17 00:00:00 2001 From: Udit Karode Date: Wed, 10 Nov 2021 08:37:46 +0530 Subject: [PATCH] [doc:README] improve wording --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e50e0b5..460d091 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Functions can have variadic arguments: ; Here are the remaining arguments: ["efgh","ijkl","mnop"] ``` -Functions can be recursive, but make sure to manually define to return type, because it isn't possible to infer types mid-function yet: +Functions can be recursive, but make sure to manually define the return type, since it isn't possible to infer the return type of a function during it's execution yet: ```clojure (defun (factorial: int) [(num: int)] { (if (== num 1) 1 (* num (factorial (- num 1))))