aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-03-08 12:28:45 -0600
committerColin Okay <okay@toyful.space>2022-03-08 12:28:45 -0600
commitb19b9f2ba733790b1d8194aa9f3bba04a8e1df3f (patch)
treee2fa9827c747b681d4c610c1fa479a73fb8096db /README.md
parentabed60dd424a3e47ecf3f69e5b00bd759073be2c (diff)
updated examples
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0b4e457..cc6a244 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ during interactive development!
A work in progress. But here is the basic idea:
- (defun+ fibble (x y &key (z 10))
+ (defun/t fibble (x y &key (z 10))
"Hey, a docstring."
:tests
(= (1 2) 13)
@@ -81,7 +81,7 @@ For example
(defvar *count*)
- (defun+ increment-count ()
+ (defun/t increment-count ()
"Increments the *count* variable."
:tests
(:with-bindings ((*count* 4))
@@ -98,7 +98,7 @@ questions. Useful for mocking.
(defun just-a-function ()
(print "Just a function."))
- (defun+ call-just-a-function ()
+ (defun/t call-just-a-function ()
"Calls JUST-A-FUNCTION."
:tests
(:with-stubs ((just-a-function () (print "TEMP JUST-A-FUNCTION.")))