Skip to content

Commit

Permalink
Rollup merge of rust-lang#116146 - Milo123459:milo/clarify-arg-docume…
Browse files Browse the repository at this point in the history
…ntation, r=thomcc

Clarify `arg` and `args` documentation

Fixes rust-lang#95400
  • Loading branch information
matthiaskrgr authored Oct 4, 2023
2 parents 36e234a + 221d0a6 commit d5bd019
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/std/src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,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
Expand Down Expand Up @@ -637,7 +637,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
Expand Down

0 comments on commit d5bd019

Please sign in to comment.