about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-05-24 18:05:35 +0000
committerbors <bors@rust-lang.org>2021-05-24 18:05:35 +0000
commit126561cb31e8ebe1e2dd9dfd0d3ca621308dc56f (patch)
tree69c30c53a02c9ebb6eda076e7b432cce46e4654d /library/std/src
parentef0ec303fa5ff6fa5654c7ea94322f3f9881f6c2 (diff)
parent16fe40d3a38a197e5a2677332d26a916f6133408 (diff)
downloadrust-126561cb31e8ebe1e2dd9dfd0d3ca621308dc56f.tar.gz
rust-126561cb31e8ebe1e2dd9dfd0d3ca621308dc56f.zip
Auto merge of #85639 - GuillaumeGomez:rollup-modinsi, r=GuillaumeGomez
Rollup of 4 pull requests

Successful merges:

 - #85271 (Fix indentation in move keyword documentation)
 - #85551 (Fix search results display)
 - #85621 (Restore sans-serif font for module items.)
 - #85628 (Replace more "NULL" with "null")

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/keyword_docs.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/keyword_docs.rs b/library/std/src/keyword_docs.rs
index 39ed62425ce..ba2b8b6955d 100644
--- a/library/std/src/keyword_docs.rs
+++ b/library/std/src/keyword_docs.rs
@@ -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.