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

Commit

Permalink
Remove continue from docs
Browse files Browse the repository at this point in the history
  • Loading branch information
hydraz committed Jul 25, 2017
1 parent ed6318d commit 564734e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/urn/control/prompt.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
. (lambda ()
. (+ 1 (abort-to-prompt 'tag)))
. (lambda (k)
. (continue k 1)))
. (k 1)))
out = 2
```"
(let* [(k (cond
Expand Down Expand Up @@ -127,7 +127,7 @@
### Example
```
> (* 2 (reset (+ 1 (shift k (continue k 5)))))
> (* 2 (reset (+ 1 (shift k (k 5)))))
out = 12
```"
(let* [(cont (gensym))
Expand All @@ -143,7 +143,7 @@
### Example
```
> (* 2 (reset (+ 1 (shift k (continue k 5)))))
> (* 2 (reset (+ 1 (shift k (k 5)))))
out = 12
```"
`(abort-to-prompt ','reset-tag
Expand Down

0 comments on commit 564734e

Please sign in to comment.