Skip to content

Commit eb948aa

Browse files
authored
[doc:README] improve wording
1 parent 49f1e17 commit eb948aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Functions can have variadic arguments:
9292
; Here are the remaining arguments: ["efgh","ijkl","mnop"]
9393
```
9494

95-
Functions can be recursive, but make sure to manually define to return type, because it isn't possible to infer types mid-function yet:
95+
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:
9696
```clojure
9797
(defun (factorial: int) [(num: int)] {
9898
(if (== num 1) 1 (* num (factorial (- num 1))))

0 commit comments

Comments
 (0)