about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-12-29 16:36:09 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-12-29 16:36:09 -0800
commit0d95b41148efbdb4179dfb0e4cd6d3643fdf3a31 (patch)
treeaed3d6af3a505c4babef32add2be86db5423e985 /src/libstd
parent0fbd1e2496100f292c2f2378d7d4fcc349620da6 (diff)
parent7fcd2c2691a418b3846869a9d42b199f70763a2a (diff)
downloadrust-0d95b41148efbdb4179dfb0e4cd6d3643fdf3a31.tar.gz
rust-0d95b41148efbdb4179dfb0e4cd6d3643fdf3a31.zip
rollup merge of #20223: aochagavia/typo
Diffstat (limited to 'src/libstd')
-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 38e304ccfec..a7b3ee996a3 100644
--- a/src/libstd/thread.rs
+++ b/src/libstd/thread.rs
@@ -313,7 +313,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.