Change a noun to a verb to make the sentence complete

This commit is contained in:
Carol (Nichols || Goulding) 2020-06-25 11:25:21 -04:00
parent 46d33043d5
commit fa0f1d3e53
No known key found for this signature in database
GPG key ID: D04B39A6CA243902

View file

@ -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