1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-29 22:40:34 +02:00

Fix "display" typo in make-thread and begin-thread docs

* doc/ref/api-scheduling.texi (make-thread, begin-thread): fix "display"
  typo.
This commit is contained in:
Rob Browning 2021-01-17 13:04:32 -06:00
parent d0d1f68794
commit b5ecfdd061

View file

@ -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