Skip to content

Commit a2f66e6

Browse files
authored
Merge pull request #1161 from GabrielBianconi/patch-1
Fix typo in `threads3` hint
2 parents 96098d2 + 86506fa commit a2f66e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

info.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@ hint = """
10121012
An alternate way to handle concurrency between threads is to use
10131013
a mpsc (multiple producer, single consumer) channel to communicate.
10141014
With both a sending end and a receiving end, it's possible to
1015-
send values in one thread and receieve them in another.
1015+
send values in one thread and receive them in another.
10161016
Multiple producers are possible by using clone() to create a duplicate
10171017
of the original sending end.
10181018
See https://doc.rust-lang.org/book/ch16-02-message-passing.html for more info.

0 commit comments

Comments
 (0)