From dd12f39b359093b19034bf2384f9ed195d61d586 Mon Sep 17 00:00:00 2001 From: Reinier Maas Date: Wed, 5 Jun 2019 09:58:39 +0200 Subject: [PATCH] Tidy: trailing whitespace Removed trailing whitespace from documentation of ExitStatus. --- src/libstd/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/process.rs b/src/libstd/process.rs index 6d20c8b49f4..a568f466637 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -1153,7 +1153,7 @@ impl From for Stdio { /// /// This `struct` is used to represent the exit status of a child process. /// Child processes are created via the [`Command`] struct and their exit -/// status is exposed through the [`status`] method, or the [`wait`] method +/// status is exposed through the [`status`] method, or the [`wait`] method /// of a [`Child`] process. /// /// [`Command`]: struct.Command.html