From 84b3c842239a97cedf2f2d131c0d5c2f30e85321 Mon Sep 17 00:00:00 2001 From: Max Heller Date: Wed, 22 Nov 2023 20:04:43 -0500 Subject: [PATCH] add missing period in `std::process::Command` docs --- 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 af6bef1a76e69..6004ed51bd164 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.