diff options
| author | Ralf Jung <post@ralfj.de> | 2023-09-06 17:58:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-06 17:58:21 +0200 |
| commit | 98c94ec72f5c9319b9192d688c5abd851dcd2d15 (patch) | |
| tree | a1adf853f3d2c4546180abcf38095351dcd85900 /library/std/src | |
| parent | fc75f723f681dc2cb1b0be7395c936adfb2f6f63 (diff) | |
| download | rust-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.rs | 2 |
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() { |
