diff options
| author | Gabriel Bianconi <1275491+GabrielBianconi@users.noreply.github.com> | 2022-08-22 23:47:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-22 23:47:23 -0400 |
| commit | 86506fa5fd5441c98e4ac74169d10578b77cd770 (patch) | |
| tree | 649d5818b175542b78c0becf5ea896145a16c3ed | |
| parent | 97bf2469b6aa69fb24287e10f1ab2f05708982ec (diff) | |
Fix typo in `threads3` hint
| -rw-r--r-- | info.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |
