summaryrefslogtreecommitdiffstats
path: root/tokio/src/sync/mutex.rs
diff options
context:
space:
mode:
authorDanilo Bargen <mail@dbrgn.ch>2019-12-09 21:07:21 +0100
committerLucio Franco <luciofranco14@gmail.com>2019-12-09 15:07:21 -0500
commit41ffdbb7d9396708bed868906cd5da837377c9fc (patch)
tree538abeec1a826bc4118560be9fca9f60ea2b141a /tokio/src/sync/mutex.rs
parent2450b5bfc9ee788975d84d4feb87f8820b63bd3f (diff)
sync::Mutex: Fix typo in documentation (#1934)
Diffstat (limited to 'tokio/src/sync/mutex.rs')
-rw-r--r--tokio/src/sync/mutex.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokio/src/sync/mutex.rs b/tokio/src/sync/mutex.rs
index cf42c3e1..07a5a63f 100644
--- a/tokio/src/sync/mutex.rs
+++ b/tokio/src/sync/mutex.rs
@@ -29,7 +29,7 @@
//! Note that in contrast to `std::sync::Mutex`, this implementation does not
//! poison the mutex when a thread holding the `MutexGuard` panics. In such a
//! case, the mutex will be unlocked. If the panic is caught, this might leave
-//! the data protected by the mutes in an inconsistent state.
+//! the data protected by the mutex in an inconsistent state.
//!
//! [`Mutex`]: struct.Mutex.html
//! [`MutexGuard`]: struct.MutexGuard.html