Fix typo in std::thread comments

This commit is contained in:
Adolfo Ochagavía 2014-12-25 13:38:50 +01:00
parent 29ad8539b9
commit 7fcd2c2691
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ impl Thread {
/// Spawn a new joinable thread, returning a `JoinGuard` for it.
///
/// The join guard can be used to explicitly join the child thead (via
/// The join guard can be used to explicitly join the child thread (via
/// `join`), returning `Result<T>`, or it will implicitly join the child
/// upon being dropped. To detach the child, allowing it to outlive the
/// current thread, use `detach`. See the module documentation for additional details.