]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/compiletest/src/errors.rs
Rollup merge of #70038 - DutchGhost:const-forget-tests, r=RalfJung
[rust.git] / src / tools / compiletest / src / errors.rs
index c3d699b3e23071efcf0481b5306ba2650f48259c..8f685fb8559f5a7d834b5fbddc85f120e2431ed3 100644 (file)
@@ -125,7 +125,7 @@ fn parse_expected(
     let captures = RE.captures(line)?;
 
     match (cfg, captures.name("cfgs")) {
-        // Only error messages that contain our `cfg` betweeen the square brackets apply to us.
+        // Only error messages that contain our `cfg` between the square brackets apply to us.
         (Some(cfg), Some(filter)) if !filter.as_str().split(',').any(|s| s == cfg) => return None,
         (Some(_), Some(_)) => {}