From 7609c645980eeb1feaea5e8122d29e9a6fc7ce5d Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Thu, 21 Apr 2016 23:19:56 +0200 Subject: [PATCH] doc: that line was too long --- src/libstd/sync/mutex.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libstd/sync/mutex.rs b/src/libstd/sync/mutex.rs index 21ce98f87481..90cc79dad66b 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 ///