summaryrefslogtreecommitdiff
path: root/core.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'core.fnl')
-rw-r--r--core.fnl4
1 files changed, 2 insertions, 2 deletions
diff --git a/core.fnl b/core.fnl
index 9f6f5aa..e004d72 100644
--- a/core.fnl
+++ b/core.fnl
@@ -380,8 +380,8 @@ oppisite truth value."
(when-some [tbl (seq tbl)]
(reduce -consj [] tbl)))
-(fn& core.inc [x] (+ x 1))
-(fn& core.dec [x] (- x 1))
+(fn* core.inc "Increase number by one" [x] (+ x 1))
+(fn* core.dec "Decrease number by one" [x] (- x 1))
(fn* core.assoc
"Associate key `k' with value `v' in `tbl'."