about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-09-10 15:41:29 +0000
committerbors <bors@rust-lang.org>2020-09-10 15:41:29 +0000
commitdf6d7bfbefe4e09241fcee7060645bd01866c9d8 (patch)
treea397184dc9f81f4368d750607ddb2bece544b603
parent99374ae1364a586b0930fa870627b82c4b7e0cb4 (diff)
parentf1775f05b7a20c83dd018bc716e1eb5578cfceb0 (diff)
downloadrust-df6d7bfbefe4e09241fcee7060645bd01866c9d8.tar.gz
rust-df6d7bfbefe4e09241fcee7060645bd01866c9d8.zip
Auto merge of #6028 - giraffate:fix_typo, r=flip1995
Fix typo

changelog: none
-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