diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-11-28 16:09:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-28 16:09:54 +0100 |
| commit | b8e1194ab22a991253fa2ee73156fdb5fb87d893 (patch) | |
| tree | 63a76f7a9a5d9ba81f1dcbb96a20ecbd1ae397de | |
| parent | df0295f07175acc7325ce3ca4152eb05752af1f2 (diff) | |
| parent | 84b3c842239a97cedf2f2d131c0d5c2f30e85321 (diff) | |
| download | rust-b8e1194ab22a991253fa2ee73156fdb5fb87d893.tar.gz rust-b8e1194ab22a991253fa2ee73156fdb5fb87d893.zip | |
Rollup merge of #118193 - max-heller:command-typo, r=m-ou-se
Add missing period in `std::process::Command` docs
| -rw-r--r-- | library/std/src/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/process.rs b/library/std/src/process.rs index af6bef1a76e..6004ed51bd1 100644 --- a/library/std/src/process.rs +++ b/library/std/src/process.rs @@ -1108,7 +1108,7 @@ impl fmt::Debug for Command { /// /// The default format approximates a shell invocation of the program along with its /// arguments. It does not include most of the other command properties. The output is not guaranteed to work - /// (e.g. due to lack of shell-escaping or differences in path resolution) + /// (e.g. due to lack of shell-escaping or differences in path resolution). /// On some platforms you can use [the alternate syntax] to show more fields. /// /// Note that the debug implementation is platform-specific. |
