From 7bda9b1255196a58798244374b366ebb99459545 Mon Sep 17 00:00:00 2001 From: Milo <50248166+Milo123459@users.noreply.github.com> Date: Mon, 25 Sep 2023 14:53:38 +0100 Subject: [PATCH 1/2] clarify documentation about variable substituion --- library/std/src/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/process.rs b/library/std/src/process.rs index 948862c2a7ddc..46625e02af0c0 100644 --- a/library/std/src/process.rs +++ b/library/std/src/process.rs @@ -609,7 +609,7 @@ impl Command { /// /// Note that the argument is not passed through a shell, but given /// literally to the program. This means that shell syntax like quotes, - /// escaped characters, word splitting, glob patterns, substitution, etc. + /// escaped characters, word splitting, glob patterns, variable substitution, etc. /// have no effect. /// /// # Examples From 221d0a661ae7579758de4586a8dc0496638d86ff Mon Sep 17 00:00:00 2001 From: Milo <50248166+Milo123459@users.noreply.github.com> Date: Mon, 25 Sep 2023 13:55:50 +0000 Subject: [PATCH 2/2] update other place --- library/std/src/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/process.rs b/library/std/src/process.rs index 46625e02af0c0..34fd76a28937f 100644 --- a/library/std/src/process.rs +++ b/library/std/src/process.rs @@ -639,7 +639,7 @@ impl Command { /// /// Note that the arguments are not passed through a shell, but given /// literally to the program. This means that shell syntax like quotes, - /// escaped characters, word splitting, glob patterns, substitution, etc. + /// escaped characters, word splitting, glob patterns, variable substitution, etc. /// have no effect. /// /// # Examples