about summary refs log tree commit diff
path: root/src/librustc_codegen_utils
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2018-11-11 20:52:36 +0700
committerBruce Mitchener <bruce.mitchener@gmail.com>2018-11-11 20:52:36 +0700
commita62af858e003e4077f5f4554c3235a4c82636b7e (patch)
treed8890443495ca8b5613f51879695744815d469e4 /src/librustc_codegen_utils
parentb76ee83254ec0398da554f25c2168d917ba60f1c (diff)
downloadrust-a62af858e003e4077f5f4554c3235a4c82636b7e.tar.gz
rust-a62af858e003e4077f5f4554c3235a4c82636b7e.zip
Fix typos.
Diffstat (limited to 'src/librustc_codegen_utils')
-rw-r--r--src/librustc_codegen_utils/linker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_codegen_utils/linker.rs b/src/librustc_codegen_utils/linker.rs
index ae1d77f1521..e9ac92da684 100644
--- a/src/librustc_codegen_utils/linker.rs
+++ b/src/librustc_codegen_utils/linker.rs
@@ -613,7 +613,7 @@ impl<'a> Linker for MsvcLinker<'a> {
         // from the CodeView line tables in the object files.
         self.cmd.arg("/DEBUG");
 
-        // This will cause the Microsoft linker to embed .natvis info into the the PDB file
+        // This will cause the Microsoft linker to embed .natvis info into the PDB file
         let sysroot = self.sess.sysroot();
         let natvis_dir_path = sysroot.join("lib\\rustlib\\etc");
         if let Ok(natvis_dir) = fs::read_dir(&natvis_dir_path) {