From f4d99d3aeba44a7407f000edef7656fbaf44562b Mon Sep 17 00:00:00 2001 From: Nelson J Morais Date: Wed, 25 Nov 2020 19:09:11 +0000 Subject: [PATCH] fixes a word typo in librustdoc --- src/librustdoc/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index a88efba77b41c..751f230105392 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;