Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/7-shared-and-networking.md
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ spawned thread and the main thread are completely locked together.

Barrier synchronization is a checkpoint where the threads must wait until _all_ of
them have reached that point. Then they can keep going as before. The barrier is
created with the number of threads that we want to wait for. As before we use use `Arc`
created with the number of threads that we want to wait for. As before we use `Arc`
to share the barrier with all the threads.

```rust
Expand Down