summaryrefslogtreecommitdiff
path: root/2d
diff options
context:
space:
mode:
authorDavid Thompson <dthompson@member.fsf.org>2013-09-15 22:26:57 -0400
committerDavid Thompson <dthompson@member.fsf.org>2013-09-15 22:26:57 -0400
commit068134e3a9c09851e0c1cbf17c28dcbd7dc51437 (patch)
tree56cc5f7e34470fbc187a2e3527354ced85ff6dea /2d
parent36a84edf7ea37d20e003a36019bb12d0d1576e42 (diff)
Clean up docstrings in coroutine module.
Diffstat (limited to '2d')
-rw-r--r--2d/coroutine.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/2d/coroutine.scm b/2d/coroutine.scm
index 04c2235..ba7659e 100644
--- a/2d/coroutine.scm
+++ b/2d/coroutine.scm
@@ -74,10 +74,10 @@ keyword arguments that is run as a coroutine."
(lambda () (name ...)))))
(define (yield callback)
- "Yield continuation to a callback procedure."
+ "Yield continuation to a CALLBACK procedure."
(abort-to-prompt 'coroutine-prompt callback))
(define* (wait #:optional (delay 1))
- "Yield coroutine and schdule the continuation to be run after delay
+ "Yield coroutine and schdule the continuation to be run after DELAY
ticks."
(yield (lambda (resume) (agenda-schedule resume delay))))