diff options
| author | Carol (Nichols || Goulding) <carol.nichols@gmail.com> | 2020-06-25 11:25:21 -0400 |
|---|---|---|
| committer | Carol (Nichols || Goulding) <carol.nichols@gmail.com> | 2020-06-25 11:25:21 -0400 |
| commit | fa0f1d3e5353df04e3d2e68e65810ca1a231c220 (patch) | |
| tree | 52b0453db29cab393d41153bde213e1b7980f696 | |
| parent | 46d33043d5de0403a2a3dab9e7817041999bf9dd (diff) | |
| download | rust-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.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 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 |
