diff --git a/library/std/src/process.rs b/library/std/src/process.rs index 948862c2a7d..46625e02af0 100644 --- a/library/std/src/process.rs +++ b/library/std/src/process.rs @@ -609,7 +609,7 @@ pub fn new>(program: S) -> 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