We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7cac97 commit e62258eCopy full SHA for e62258e
src/tools/tidy/src/x_version.rs
@@ -4,7 +4,7 @@ use std::process::{Command, Stdio};
4
5
pub fn check(bad: &mut bool) {
6
let result = Command::new("x").arg("--wrapper-version").stdout(Stdio::piped()).spawn();
7
- // This runs the command inside a temporarily directory.
+ // This runs the command inside a temporary directory.
8
// This allows us to compare output of result to see if `--wrapper-version` is not a recognized argument to x.
9
let temp_result = Command::new("x")
10
.arg("--wrapper-version")
0 commit comments