about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorReinier Maas <ReinierMaas@users.noreply.github.com>2019-06-05 09:58:39 +0200
committerGitHub <noreply@github.com>2019-06-05 09:58:39 +0200
commitdd12f39b359093b19034bf2384f9ed195d61d586 (patch)
tree2f35149ef76228e61ad53f81878cc7de4d84385f /src/libstd
parent674f24e13270db4e172bb1eb4d8a3b5c4da20cb5 (diff)
downloadrust-dd12f39b359093b19034bf2384f9ed195d61d586.tar.gz
rust-dd12f39b359093b19034bf2384f9ed195d61d586.zip
Tidy: trailing whitespace
Removed trailing whitespace from documentation of ExitStatus.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/process.rs2
1 files changed, 1 insertions, 1 deletions
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<fs::File> 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