aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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.")))