Skip to content

Commit 86506fa

Browse files
Fix typo in threads3 hint
1 parent 97bf246 commit 86506fa

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)