From 64f4e34d69a99b00e635a572a0643dd008bb5a3a Mon Sep 17 00:00:00 2001 From: Chinmay Deshpande Date: Mon, 19 Jul 2021 20:03:03 -0700 Subject: [PATCH] Fix typo in compile.rs --- src/bootstrap/compile.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootstrap/compile.rs b/src/bootstrap/compile.rs index 1fae4bee732..5b9ea97dea5 100644 --- a/src/bootstrap/compile.rs +++ b/src/bootstrap/compile.rs @@ -2,7 +2,7 @@ //! library. //! //! This module contains some of the real meat in the rustbuild build system -//! which is where Cargo is used to compiler the standard library, libtest, and +//! which is where Cargo is used to compile the standard library, libtest, and //! compiler. This module is also responsible for assembling the sysroot as it //! goes along from the output of the previous stage.