about summary refs log tree commit diff
path: root/library/std/src/sys
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2020-10-17 20:10:58 -0700
committerDominik Stolz <d.stolz@tum.de>2021-07-21 10:49:11 +0200
commitef03de2e6a4c28543941a228e0c42bcf2dc61df6 (patch)
tree95182ae11006c3d5257de27539f1c12083191012 /library/std/src/sys
parent694be09b7be057aa342e6cfe61815032942e5f95 (diff)
downloadrust-ef03de2e6a4c28543941a228e0c42bcf2dc61df6.tar.gz
rust-ef03de2e6a4c28543941a228e0c42bcf2dc61df6.zip
Typo fix
Co-authored-by: bjorn3 <bjorn3@users.noreply.github.com>
Diffstat (limited to 'library/std/src/sys')
-rw-r--r--library/std/src/sys/unix/process/process_unix.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/unix/process/process_unix.rs b/library/std/src/sys/unix/process/process_unix.rs
index c1605faceb6..674c694e4fc 100644
--- a/library/std/src/sys/unix/process/process_unix.rs
+++ b/library/std/src/sys/unix/process/process_unix.rs
@@ -135,7 +135,7 @@ impl Command {
         let mut pidfd: libc::pid_t = -1;
 
         // On Linux, attempt to use the `clone3` syscall, which
-        // supports more argument (in prarticular, the ability to create a pidfd).
+        // supports more argument (in particular, the ability to create a pidfd).
         // If this fails, we will fall through this block to a call to `fork()`
         cfg_if::cfg_if! {
             if #[cfg(target_os = "linux")] {