Fix "display" typo in make-thread and begin-thread docs
authorRob Browning <rlb@defaultvalue.org>
Sun, 17 Jan 2021 19:04:32 +0000 (13:04 -0600)
committerRob Browning <rlb@defaultvalue.org>
Sun, 17 Jan 2021 19:25:42 +0000 (13:25 -0600)
* doc/ref/api-scheduling.texi (make-thread, begin-thread): fix "display"
  typo.

doc/ref/api-scheduling.texi

index 413a213494c97139ae63c2e296f3bbc154f75b24..09e65e7280df1d3f8278a3248c2230cf62dc51ee 100644 (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