summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Browning <rlb@defaultvalue.org>2021-01-17 13:04:32 -0600
committerRob Browning <rlb@defaultvalue.org>2021-01-17 13:25:42 -0600
commitb5ecfdd06161385ef7d6c222926d84b31371565b (patch)
tree3390abad9f3457181935668071c7a4967d52b629
parentd0d1f68794c2971bd230aa63f44cbf7a8ab6ab0d (diff)
downloadguile-b5ecfdd06161385ef7d6c222926d84b31371565b.tar.gz
Fix "display" typo in make-thread and begin-thread docs
* doc/ref/api-scheduling.texi (make-thread, begin-thread): fix "display" typo.
-rw-r--r--doc/ref/api-scheduling.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/api-scheduling.texi b/doc/ref/api-scheduling.texi
index 413a21349..09e65e728 100644
--- a/doc/ref/api-scheduling.texi
+++ b/doc/ref/api-scheduling.texi
@@ -125,14 +125,14 @@ interrupts.
@deffn macro make-thread proc arg @dots{}
Apply @var{proc} to @var{arg} @dots{} in a new thread formed by
-@code{call-with-new-thread} using a default error handler that display
+@code{call-with-new-thread} using a default error handler that displays
the error to the current error port. The @var{arg} @dots{}
expressions are evaluated in the new thread.
@end deffn
@deffn macro begin-thread expr1 expr2 @dots{}
Evaluate forms @var{expr1} @var{expr2} @dots{} in a new thread formed by
-@code{call-with-new-thread} using a default error handler that display
+@code{call-with-new-thread} using a default error handler that displays
the error to the current error port.
@end deffn