about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCarol (Nichols || Goulding) <carol.nichols@gmail.com>2020-06-25 11:25:21 -0400
committerCarol (Nichols || Goulding) <carol.nichols@gmail.com>2020-06-25 11:25:21 -0400
commitfa0f1d3e5353df04e3d2e68e65810ca1a231c220 (patch)
tree52b0453db29cab393d41153bde213e1b7980f696
parent46d33043d5de0403a2a3dab9e7817041999bf9dd (diff)
downloadrust-fa0f1d3e5353df04e3d2e68e65810ca1a231c220.tar.gz
rust-fa0f1d3e5353df04e3d2e68e65810ca1a231c220.zip
Change a noun to a verb to make the sentence complete
-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 a88f922d8e0..8f7e06b32ff 100644
--- a/clippy_lints/src/await_holding_lock.rs
+++ b/clippy_lints/src/await_holding_lock.rs
@@ -11,7 +11,7 @@ declare_clippy_lint! {
     /// non-async-aware MutexGuard.
     ///
     /// **Why is this bad?** The Mutex types found in syd::sync and parking_lot
-    /// are not designed to operator in an async context across await points.
+    /// 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
     /// type. Many asynchronous foundation crates provide such a Mutex type. The