diff options
| author | Takayuki Nakata <f.seasons017@gmail.com> | 2020-09-10 22:39:08 +0900 |
|---|---|---|
| committer | Takayuki Nakata <f.seasons017@gmail.com> | 2020-09-10 22:41:08 +0900 |
| commit | f1775f05b7a20c83dd018bc716e1eb5578cfceb0 (patch) | |
| tree | 4ec02c8eac95ea860682acdf9653d7b74153259e | |
| parent | e0f46a19bc97261bb896d0c00a6986740739e409 (diff) | |
| download | rust-f1775f05b7a20c83dd018bc716e1eb5578cfceb0.tar.gz rust-f1775f05b7a20c83dd018bc716e1eb5578cfceb0.zip | |
Fix typo
| -rw-r--r-- | clippy_lints/src/await_holding_lock.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/await_holding_lock.rs b/clippy_lints/src/await_holding_lock.rs index f18e7e5d997..367534499fd 100644 --- a/clippy_lints/src/await_holding_lock.rs +++ b/clippy_lints/src/await_holding_lock.rs @@ -10,7 +10,7 @@ declare_clippy_lint! { /// **What it does:** Checks for calls to await while holding a /// non-async-aware MutexGuard. /// - /// **Why is this bad?** The Mutex types found in syd::sync and parking_lot + /// **Why is this bad?** The Mutex types found in std::sync and parking_lot /// are not designed to operate in an async context across await points. /// /// There are two potential solutions. One is to use an asynx-aware Mutex |
