diff options
author | David Thompson <dthompson2@worcester.edu> | 2014-01-13 19:01:13 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2014-01-13 19:01:13 -0500 |
commit | 125ae95c29f655c10973f155be4fdfc3bf0acfd3 (patch) | |
tree | 81c87133f3c6d857f1ff6e676bc037511d2da3e9 | |
parent | f54e9e5376476cd5bbad667f20c22d3004994df1 (diff) |
Fix docstring.
* 2d/repl/repl.scm (add-to-repl-mvar): Fix.
-rw-r--r-- | 2d/repl/repl.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/2d/repl/repl.scm b/2d/repl/repl.scm index d342e3d..1cc2992 100644 --- a/2d/repl/repl.scm +++ b/2d/repl/repl.scm @@ -155,8 +155,8 @@ INPUT, OUTPUT, and ERROR ports." ;; run it on the next tick. We also pass along the ;; input/output/error ports and the REPL stack. (put-mvar repl-input-mvar (list thunk input output error stack)) - ;; Read the results back from game-mvar. Will block until results - ;; are available. + ;; Read the results back from repl-output-mvar. Will block until + ;; results are available. (take-mvar repl-output-mvar)) (define (flush-repl) |