Skip to content
This repository was archived by the owner on Jul 7, 2024. It is now read-only.

Commit 564734e

Browse files
author
hydraz
committed
Remove continue from docs
1 parent ed6318d commit 564734e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/urn/control/prompt.lisp

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
. (lambda ()
3434
. (+ 1 (abort-to-prompt 'tag)))
3535
. (lambda (k)
36-
. (continue k 1)))
36+
. (k 1)))
3737
out = 2
3838
```"
3939
(let* [(k (cond
@@ -127,7 +127,7 @@
127127
128128
### Example
129129
```
130-
> (* 2 (reset (+ 1 (shift k (continue k 5)))))
130+
> (* 2 (reset (+ 1 (shift k (k 5)))))
131131
out = 12
132132
```"
133133
(let* [(cont (gensym))
@@ -143,7 +143,7 @@
143143
144144
### Example
145145
```
146-
> (* 2 (reset (+ 1 (shift k (continue k 5)))))
146+
> (* 2 (reset (+ 1 (shift k (k 5)))))
147147
out = 12
148148
```"
149149
`(abort-to-prompt ','reset-tag

0 commit comments

Comments
 (0)