about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTakayuki Nakata <f.seasons017@gmail.com>2020-09-10 22:39:08 +0900
committerTakayuki Nakata <f.seasons017@gmail.com>2020-09-10 22:41:08 +0900
commitf1775f05b7a20c83dd018bc716e1eb5578cfceb0 (patch)
tree4ec02c8eac95ea860682acdf9653d7b74153259e
parente0f46a19bc97261bb896d0c00a6986740739e409 (diff)
downloadrust-f1775f05b7a20c83dd018bc716e1eb5578cfceb0.tar.gz
rust-f1775f05b7a20c83dd018bc716e1eb5578cfceb0.zip
Fix typo
-rw-r--r--clippy_lints/src/await_holding_lock.rs2
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