Fix a typo in the doc comment of `std::os::unix:🧵:JoinHandleExt`

This commit is contained in:
Tobias Bucher 2016-03-31 19:28:06 +02:00
parent 4583dc9b13
commit 28e45bb96a
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;
}