Rollup merge of #32654 - tbu-:pr_doc_joinhandleext, r=sfackler

Fix a typo in the doc comment of `std::os::unix:🧵:JoinHandleExt`
This commit is contained in:
Manish Goregaokar 2016-04-01 18:44:50 +05:30
commit 55dbffe6df
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ pub trait JoinHandleExt {
///
/// This function **transfers ownership** of the underlying pthread_t to
/// the caller. Callers are then the unique owners of the pthread_t and
/// must either detech or join the pthread_t once it's no longer needed.
/// must either detach or join the pthread_t once it's no longer needed.
fn into_pthread_t(self) -> RawPthread;
}