remove small typo in hint of threads3

This commit is contained in:
Eric Jolibois 2022-07-19 11:45:34 +02:00 committed by GitHub
parent 0e7de2e7a7
commit 8a4dca5fa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -988,7 +988,7 @@ An alternate way to handle concurrency between threads is to use
a mpsc (multiple producer, single consumer) channel to communicate. a mpsc (multiple producer, single consumer) channel to communicate.
With both a sending end and a receiving end, it's possible to With both a sending end and a receiving end, it's possible to
send values in one thread and receieve them in another. send values in one thread and receieve them in another.
Multiple producers are possibile by using clone() to create a duplicate Multiple producers are possible by using clone() to create a duplicate
of the original sending end. of the original sending end.
See https://doc.rust-lang.org/book/ch16-02-message-passing.html for more info. See https://doc.rust-lang.org/book/ch16-02-message-passing.html for more info.
""" """