Rollup merge of #64039 - pickfire:patch-1, r=jonas-schievink

Update sync condvar doc style
This commit is contained in:
Mazdak Farrokhzad 2019-09-01 11:39:29 +02:00 committed by GitHub
commit a7ba1befd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ impl WaitTimeoutResult {
/// once the boolean has been updated and notified.
///
/// ```
/// use std::sync::{Arc, Mutex, Condvar};
/// use std::sync::{Arc, Condvar, Mutex};
/// use std::thread;
/// use std::time::Duration;
///