1
Fork 0

Fix indentation in move keyword documentation

This commit is contained in:
Thomas Otto 2021-05-13 22:49:10 +02:00
parent 952c5732c2
commit 95920d15b9

View file

@ -1008,9 +1008,9 @@ mod mod_keyword {}
/// move || println!("This is a: {}", text)
/// }
///
/// let fn_plain = create_fn();
/// let fn_plain = create_fn();
///
/// fn_plain();
/// fn_plain();
/// ```
///
/// `move` is often used when [threads] are involved.