summary refs log tree commit diff
path: root/compiler/rustc_session/src
diff options
context:
space:
mode:
authorAndré Vennberg <andre.vennberg@gmail.com>2023-01-14 17:34:59 +0100
committerAndré Vennberg <andre.vennberg@gmail.com>2023-01-14 17:34:59 +0100
commitda3623abab0bb548b539a8a61ba5b813f5395db8 (patch)
tree6c682248d65f6e27b11861b691384b17cf374a7d /compiler/rustc_session/src
parent44a500c8c187b245638684748f54bd6ec67e0b25 (diff)
downloadrust-da3623abab0bb548b539a8a61ba5b813f5395db8.tar.gz
rust-da3623abab0bb548b539a8a61ba5b813f5395db8.zip
Removed various double spaces in compiler source comments.
Diffstat (limited to 'compiler/rustc_session/src')
-rw-r--r--compiler/rustc_session/src/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/config.rs b/compiler/rustc_session/src/config.rs
index 1ccfc59f7a9..55576b4e0d1 100644
--- a/compiler/rustc_session/src/config.rs
+++ b/compiler/rustc_session/src/config.rs
@@ -2091,7 +2091,7 @@ fn parse_libs(matches: &getopts::Matches, error_format: ErrorOutputType) -> Vec<
         .map(|s| {
             // Parse string of the form "[KIND[:MODIFIERS]=]lib[:new_name]",
             // where KIND is one of "dylib", "framework", "static", "link-arg" and
-            // where MODIFIERS are  a comma separated list of supported modifiers
+            // where MODIFIERS are a comma separated list of supported modifiers
             // (bundle, verbatim, whole-archive, as-needed). Each modifier is prefixed
             // with either + or - to indicate whether it is enabled or disabled.
             // The last value specified for a given modifier wins.