diff options
| author | Adolfo OchagavĂa <aochagavia92@gmail.com> | 2014-12-25 13:38:50 +0100 |
|---|---|---|
| committer | Adolfo OchagavĂa <aochagavia92@gmail.com> | 2014-12-25 13:38:50 +0100 |
| commit | 7fcd2c2691a418b3846869a9d42b199f70763a2a (patch) | |
| tree | 6ce4bc2404ef7722d4d13fc4b3c18a8eddc64bc8 /src/libstd/thread.rs | |
| parent | 29ad8539b9c408eebbe7252f74c754f4e0a41d46 (diff) | |
| download | rust-7fcd2c2691a418b3846869a9d42b199f70763a2a.tar.gz rust-7fcd2c2691a418b3846869a9d42b199f70763a2a.zip | |
Fix typo in std::thread comments
Diffstat (limited to 'src/libstd/thread.rs')
| -rw-r--r-- | src/libstd/thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/thread.rs b/src/libstd/thread.rs index 89773207347..8c66fd39c0c 100644 --- a/src/libstd/thread.rs +++ b/src/libstd/thread.rs @@ -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. |
