Fix typo in libstd/thread/mod.rs: remove unnecessary comma

This commit is contained in:
Artem Varaksa 2018-10-06 20:09:54 +03:00
parent b4d9835f6c
commit ddcec08a54

View File

@ -576,7 +576,7 @@ pub fn current() -> Thread {
/// Thus the pattern of `yield`ing after a failed poll is rather common when
/// implementing low-level shared resources or synchronization primitives.
///
/// However programmers will usually prefer to use, [`channel`]s, [`Condvar`]s,
/// However programmers will usually prefer to use [`channel`]s, [`Condvar`]s,
/// [`Mutex`]es or [`join`] for their synchronization routines, as they avoid
/// thinking about thread scheduling.
///