Fix typo in threads3 hint

This commit is contained in:
Gabriel Bianconi 2022-08-22 23:47:23 -04:00 committed by GitHub
parent 97bf2469b6
commit 86506fa5fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1012,7 +1012,7 @@ hint = """
An alternate way to handle concurrency between threads is to use
a mpsc (multiple producer, single consumer) channel to communicate.
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 receive them in another.
Multiple producers are possible by using clone() to create a duplicate
of the original sending end.
See https://doc.rust-lang.org/book/ch16-02-message-passing.html for more info.