about summary refs log tree commit diff
path: root/src/libstd/thread.rs
diff options
context:
space:
mode:
authorAdolfo OchagavĂ­a <aochagavia92@gmail.com>2014-12-25 13:38:50 +0100
committerAdolfo OchagavĂ­a <aochagavia92@gmail.com>2014-12-25 13:38:50 +0100
commit7fcd2c2691a418b3846869a9d42b199f70763a2a (patch)
tree6ce4bc2404ef7722d4d13fc4b3c18a8eddc64bc8 /src/libstd/thread.rs
parent29ad8539b9c408eebbe7252f74c754f4e0a41d46 (diff)
downloadrust-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.rs2
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.