about summary refs log tree commit diff
path: root/compiler/rustc_trait_selection/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_trait_selection/src
parent44a500c8c187b245638684748f54bd6ec67e0b25 (diff)
downloadrust-da3623abab0bb548b539a8a61ba5b813f5395db8.tar.gz
rust-da3623abab0bb548b539a8a61ba5b813f5395db8.zip
Removed various double spaces in compiler source comments.
Diffstat (limited to 'compiler/rustc_trait_selection/src')
-rw-r--r--compiler/rustc_trait_selection/src/traits/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/mod.rs b/compiler/rustc_trait_selection/src/traits/mod.rs
index 37b40a2f75a..e5fbf981bed 100644
--- a/compiler/rustc_trait_selection/src/traits/mod.rs
+++ b/compiler/rustc_trait_selection/src/traits/mod.rs
@@ -308,7 +308,7 @@ pub fn normalize_param_env_or_error<'tcx>(
     // the `TypeOutlives` predicates first inside the unnormalized parameter environment, and
     // then we normalize the `TypeOutlives` bounds inside the normalized parameter environment.
     //
-    // This works fairly well because trait matching  does not actually care about param-env
+    // This works fairly well because trait matching does not actually care about param-env
     // TypeOutlives predicates - these are normally used by regionck.
     let outlives_predicates: Vec<_> = predicates
         .drain_filter(|predicate| {