about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/thread/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs
index 98452a396aa..aa7ef2da0ae 100644
--- a/src/libstd/thread/mod.rs
+++ b/src/libstd/thread/mod.rs
@@ -727,7 +727,7 @@ struct Inner {
 ///     thread::Builder::new()
 ///     .name(thread_name) // Now you can identify which thread panicked
 ///                        // thanks to the handle's name
-///     .spawn(|| {
+///     .spawn(move || {
 ///         if i == 3 {
 ///             panic!("I'm scared!!!");
 ///         }