From 7fcd2c2691a418b3846869a9d42b199f70763a2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20Ochagav=C3=ADa?= Date: Thu, 25 Dec 2014 13:38:50 +0100 Subject: [PATCH] Fix typo in std::thread comments --- src/libstd/thread.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`, 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.