about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2023-09-06 17:58:21 +0200
committerGitHub <noreply@github.com>2023-09-06 17:58:21 +0200
commit98c94ec72f5c9319b9192d688c5abd851dcd2d15 (patch)
treea1adf853f3d2c4546180abcf38095351dcd85900 /library/std/src
parentfc75f723f681dc2cb1b0be7395c936adfb2f6f63 (diff)
downloadrust-98c94ec72f5c9319b9192d688c5abd851dcd2d15.tar.gz
rust-98c94ec72f5c9319b9192d688c5abd851dcd2d15.zip
fix typo
Co-authored-by: Marcin S. <marcin@realemail.net>
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/sys/unix/process/process_common.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/unix/process/process_common.rs b/library/std/src/sys/unix/process/process_common.rs
index 957947a674a..644d32b6459 100644
--- a/library/std/src/sys/unix/process/process_common.rs
+++ b/library/std/src/sys/unix/process/process_common.rs
@@ -562,7 +562,7 @@ impl fmt::Debug for Command {
                 write!(f, "env -i ")?;
                 // Altered env vars will be printed next, that should exactly work as expected.
             } else {
-                // Removed env vars need the command to be wrappen in `env`.
+                // Removed env vars need the command to be wrapped in `env`.
                 let mut any_removed = false;
                 for (key, value_opt) in self.get_envs() {
                     if value_opt.is_none() {