Fix minor typos in std::process doc on Win argv · model-checking/verify-rust-std@96e8ba7

Original file line numberDiff line numberDiff line change

@@ -96,9 +96,9 @@

9696

//! child processes must agree on how the commandline string is encoded.

9797

//!

9898

//! Most programs use the standard C run-time `argv`, which in practice results

99-

//! in consistent argument handling. However some programs have their own way of

99+

//! in consistent argument handling. However, some programs have their own way of

100100

//! parsing the commandline string. In these cases using [`arg`] or [`args`] may

101-

//! result in the child process seeing a different array of arguments then the

101+

//! result in the child process seeing a different array of arguments than the

102102

//! parent process intended.

103103

//!

104104

//! Two ways of mitigating this are: