diff options
author | David Thompson <davet@gnu.org> | 2015-06-06 09:59:48 -0400 |
---|---|---|
committer | David Thompson <davet@gnu.org> | 2015-06-06 09:59:48 -0400 |
commit | dd50a8667c4359e532902844be276c239b87df74 (patch) | |
tree | 81e626be2fe237c176f308dd8153e67b2876e76f | |
parent | de2abeb1a9bb6a51b0057baa5097b64c06590297 (diff) |
signal: Fix inaccurate comment.
I don't know why I wrote that the signal combinators are "higher order
signals", but that's not true. They are just procedures (some of which
are higher order procedures) that take signals as arguments.
* sly/signal.scm: Fix comment.
-rw-r--r-- | sly/signal.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sly/signal.scm b/sly/signal.scm index 83f1ea5..f5dd3cf 100644 --- a/sly/signal.scm +++ b/sly/signal.scm @@ -195,7 +195,7 @@ be coerced into one." (signal-let* rest body ...))))) ;;; -;;; Higher Order Signals +;;; Signal Combinators ;;; (define (hook->signal hook init proc) |