about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorMatthias Krüger <476013+matthiaskrgr@users.noreply.github.com>2025-07-07 19:55:32 +0200
committerGitHub <noreply@github.com>2025-07-07 19:55:32 +0200
commit2554c424ef0505d0e08d56be8630e6c4045a88c8 (patch)
tree65f2c63bb704e3df6313a09b9d3e70f2826eb294 /tests
parent00a44181588ef976a9d1455ba4efc038acce2ee0 (diff)
parenta0111ec7a1f895bd4517b8530596d408f1b58214 (diff)
downloadrust-2554c424ef0505d0e08d56be8630e6c4045a88c8.tar.gz
rust-2554c424ef0505d0e08d56be8630e6c4045a88c8.zip
Rollup merge of #143340 - nabijaczleweli:awhile, r=mati865
awhile -> a while where appropriate
Diffstat (limited to 'tests')
-rw-r--r--tests/ui/process/core-run-destroy.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/process/core-run-destroy.rs b/tests/ui/process/core-run-destroy.rs
index b4815c9dfbb..f4be54da8fe 100644
--- a/tests/ui/process/core-run-destroy.rs
+++ b/tests/ui/process/core-run-destroy.rs
@@ -37,7 +37,7 @@ pub fn sleeper() -> Child {
 pub fn sleeper() -> Child {
     // There's a `timeout` command on windows, but it doesn't like having
     // its output piped, so instead just ping ourselves a few times with
-    // gaps in between so we're sure this process is alive for awhile
+    // gaps in between so we're sure this process is alive for a while
     t!(Command::new("ping").arg("127.0.0.1").arg("-n").arg("1000").spawn())
 }