about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev@gmail.com>2021-03-07 10:41:20 +0900
committerGitHub <noreply@github.com>2021-03-07 10:41:20 +0900
commit74ae20e2c6b6b2a0f839a42b0fd40cb976e7eaca (patch)
tree623b643c1c720546bc72132d462a4e8f2c28649d
parentb6191d7c6625db312286f94391cc7d4d6d62d390 (diff)
parent0ca63ec1f7f46c2784cc2e6059a90cce0ceccd01 (diff)
downloadrust-74ae20e2c6b6b2a0f839a42b0fd40cb976e7eaca.tar.gz
rust-74ae20e2c6b6b2a0f839a42b0fd40cb976e7eaca.zip
Rollup merge of #82822 - henryboisdequin:fix-typo-rustc, r=oli-obk
Fix typo

we need to actually -> we actually need to

````@rustbot```` label +C-cleanup
-rw-r--r--compiler/rustc/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc/src/main.rs b/compiler/rustc/src/main.rs
index 6bc5aa6382c..0151973eccf 100644
--- a/compiler/rustc/src/main.rs
+++ b/compiler/rustc/src/main.rs
@@ -4,7 +4,7 @@ fn main() {
     // Note that we're pulling in a static copy of jemalloc which means that to
     // pull it in we need to actually reference its symbols for it to get
     // linked. The two crates we link to here, std and rustc_driver, are both
-    // dynamic libraries. That means to pull in jemalloc we need to actually
+    // dynamic libraries. That means to pull in jemalloc we actually need to
     // reference allocation symbols one way or another (as this file is the only
     // object code in the rustc executable).
     #[cfg(feature = "jemalloc-sys")]