diff options
| author | mo8it <mo8it@proton.me> | 2024-07-01 11:23:40 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-07-01 11:23:40 +0200 |
| commit | a13e3cd07f86e8668a326bae98568cced61f5015 (patch) | |
| tree | af1fcd946644ee4380bb8b66078a03005bdf532e /rustlings-macros/info.toml | |
| parent | dfa2b44f718906dfac54816bb582880066c3dff0 (diff) | |
threads3 solution
Diffstat (limited to 'rustlings-macros/info.toml')
| -rw-r--r-- | rustlings-macros/info.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml index ab8c121..24dcdee 100644 --- a/rustlings-macros/info.toml +++ b/rustlings-macros/info.toml @@ -1076,10 +1076,11 @@ An alternate way to handle concurrency between threads is to use an `mpsc` With both a sending end and a receiving end, it's possible to send values in one thread and receive them in another. -Multiple producers are possible by using clone() to create a duplicate of the +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.""" +Related section in The Book: +https://doc.rust-lang.org/book/ch16-02-message-passing.html""" # MACROS |
