From 068134e3a9c09851e0c1cbf17c28dcbd7dc51437 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Sun, 15 Sep 2013 22:26:57 -0400 Subject: Clean up docstrings in coroutine module. --- 2d/coroutine.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '2d') 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)))) -- cgit v1.2.3