We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fb17671 + 30ea0a5 commit 685b773Copy full SHA for 685b773
clippy_lints/src/await_holding_invalid.rs
@@ -16,7 +16,7 @@ declare_clippy_lint! {
16
/// The Mutex types found in std::sync and parking_lot
17
/// are not designed to operate in an async context across await points.
18
///
19
- /// There are two potential solutions. One is to use an asynx-aware Mutex
+ /// There are two potential solutions. One is to use an async-aware Mutex
20
/// type. Many asynchronous foundation crates provide such a Mutex type. The
21
/// other solution is to ensure the mutex is unlocked before calling await,
22
/// either by introducing a scope or an explicit call to Drop::drop.
0 commit comments