Auto merge of #33142 - tshepang:split-long-line, r=guillaumegomez

doc: that line was too long
This commit is contained in:
bors 2016-04-26 09:04:27 -07:00
commit 01a0207919

View file

@ -206,8 +206,8 @@ impl<T: ?Sized> Mutex<T> {
/// 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
///