about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonas Schievink <jonasschievink@gmail.com>2020-11-26 13:39:16 +0100
committerGitHub <noreply@github.com>2020-11-26 13:39:16 +0100
commit116ba9588835ac015b49b009560d60ca7c7ace36 (patch)
treead24612c86cbf664f0cde637820d24d979618240
parenteb74eb7761d4322fdc7d23721269f9e817da2ab5 (diff)
parentf4d99d3aeba44a7407f000edef7656fbaf44562b (diff)
downloadrust-116ba9588835ac015b49b009560d60ca7c7ace36.tar.gz
rust-116ba9588835ac015b49b009560d60ca7c7ace36.zip
Rollup merge of #79420 - njasm:patch_rustdoc, r=GuillaumeGomez
Fixes a word typo in librustdoc

Fixes a word typo in librustdoc
-rw-r--r--src/librustdoc/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs
index a88efba77b4..751f2301053 100644
--- a/src/librustdoc/lib.rs
+++ b/src/librustdoc/lib.rs
@@ -513,7 +513,7 @@ fn main_options(options: config::Options) -> MainResult {
     }
 
     // need to move these items separately because we lose them by the time the closure is called,
-    // but we can't crates the Handler ahead of time because it's not Send
+    // but we can't create the Handler ahead of time because it's not Send
     let diag_opts = (options.error_format, options.edition, options.debugging_opts.clone());
     let show_coverage = options.show_coverage;
     let run_check = options.run_check;