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 content/tokio/tutorial/shared-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ sharded hash map. You may also want to have a look at such concurrent hash table
implementations as [leapfrog] and [flurry], the latter being a port of Java's
`ConcurrentHashMap` data structure.

Before you start using any of these crates, be sure you structure your code so,
Before you start using any of these crates, be sure you structure your code so
that you cannot hold a `MutexGuard` across an `.await`. If you don't, you will
either have compiler errors (in case of non-Send guards) or your code will
deadlock (in case of Send guards). See a full example and more context [in this blog post][shared-mutable-state-blog-post].
Expand Down