diff --git a/src/libstd/sync/mutex.rs b/src/libstd/sync/mutex.rs index 21ce98f87481f..90cc79dad66bb 100644 --- a/src/libstd/sync/mutex.rs +++ b/src/libstd/sync/mutex.rs @@ -206,8 +206,8 @@ impl Mutex { /// the guard goes out of scope, the mutex will be unlocked. /// /// The exact behavior on locking a mutex in the thread which already holds - /// the lock is left unspecified, however, this function will not return on - /// the second call, it might e.g. panic or deadlock. + /// the lock is left unspecified. However, this function will not return on + /// the second call (it might panic or deadlock, for example). /// /// # Errors ///