about summary refs log tree commit diff
path: root/tests/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs
diff options
context:
space:
mode:
authorMartin Nordholts <martin.nordholts@codetale.se>2024-04-29 06:49:39 +0200
committerMartin Nordholts <martin.nordholts@codetale.se>2024-04-29 06:49:39 +0200
commit448d527fd8d705393274198d858a4e2d2a2d8d54 (patch)
tree976579249ea721c9aa9bd9eb9184ee028cfa7b96 /tests/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs
parent91d5e4af8674bde06096bac1e7ac04af0e94c691 (diff)
downloadrust-448d527fd8d705393274198d858a4e2d2a2d8d54.tar.gz
rust-448d527fd8d705393274198d858a4e2d2a2d8d54.zip
Typo fix: exec:ing -> exec'ing
Diffstat (limited to 'tests/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs')
-rw-r--r--tests/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs b/tests/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs
index 694fa460e9b..3e63349edb7 100644
--- a/tests/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs
+++ b/tests/ui/attributes/unix_sigpipe/unix_sigpipe-inherit.rs
@@ -8,7 +8,7 @@
 
 extern crate libc;
 
-// By default the Rust runtime resets SIGPIPE to SIG_DFL before exec:ing child
+// By default the Rust runtime resets SIGPIPE to SIG_DFL before exec'ing child
 // processes so opt-out of that with `#[unix_sigpipe = "sig_dfl"]`. See
 // https://github.com/rust-lang/rust/blob/bf4de3a874753bbee3323081c8b0c133444fed2d/library/std/src/sys/pal/unix/process/process_unix.rs#L359-L384
 #[unix_sigpipe = "sig_dfl"]