From 5d98ed4b8b8b32f3e9e0a4a3d9e433b16b791995 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Thu, 25 Apr 2019 17:09:35 -0400 Subject: [PATCH] fix typo in rustc.rs comment --- src/cargo/util/rustc.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/cargo/util/rustc.rs b/src/cargo/util/rustc.rs index 3a3451317ef..db5abeed415 100644 --- a/src/cargo/util/rustc.rs +++ b/src/cargo/util/rustc.rs @@ -95,11 +95,11 @@ impl Rustc { } } -/// It is a well known that `rustc` is not the fastest compiler in the world. -/// What is less known is that even `rustc --version --verbose` takes about a -/// hundred milliseconds! Because we need compiler version info even for no-op -/// builds, we cache it here, based on compiler's mtime and rustup's current -/// toolchain. +/// It is a well known fact that `rustc` is not the fastest compiler in the +/// world. What is less known is that even `rustc --version --verbose` takes +/// about a hundred milliseconds! Because we need compiler version info even +/// for no-op builds, we cache it here, based on compiler's mtime and rustup's +/// current toolchain. /// /// https://github.com/rust-lang/cargo/issues/5315 /// https://github.com/rust-lang/rust/issues/49761