You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/lessons/09_concurrency/index.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ They are marker traits used to indicate that a type or a reference to it can be
59
59
60
60
This makes sense, because `Sync` is about _sharing_ object between threads, and `&` is the _shared_ reference.
61
61
62
-
There is also a great answer on Rust forum, listing + explaining example types that are `!Send` or `!Sync`: https://users.rust-lang.org/t/example-of-a-type-that-is-not-send/59835/3.
62
+
There is also [a great answer on Rust forum](https://users.rust-lang.org/t/example-of-a-type-that-is-not-send/59835/3), listing + explaining example types that are `!Send` or `!Sync`.
63
63
64
64
For more convenient analysis, examples are listed here:
0 commit comments