about summary refs log tree commit diff
path: root/src/libstd/process.rs
diff options
context:
space:
mode:
authorAndreas Tolfsen <ato@sny.no>2018-04-17 08:00:48 +0100
committerAndreas Tolfsen <ato@sny.no>2018-04-17 08:00:48 +0100
commitbc4bd5642ab7ccfdaf84c95c8b62f620acbca644 (patch)
tree6f0d90228e790b1f5338b06672b23c1990479982 /src/libstd/process.rs
parentfd2afa01aa614114811ff68ed31c146f7aab1d28 (diff)
downloadrust-bc4bd5642ab7ccfdaf84c95c8b62f620acbca644.tar.gz
rust-bc4bd5642ab7ccfdaf84c95c8b62f620acbca644.zip
fixup! std: Child::kill() returns error if process has already exited
Diffstat (limited to 'src/libstd/process.rs')
-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 60759de8afc..431226453ff 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -1121,7 +1121,7 @@ impl ExitCode {
 }
 
 impl Child {
-    /// Forces the child process to exit.  If the child has already exited, an [`InvalidInput`]
+    /// Forces the child process to exit. If the child has already exited, an [`InvalidInput`]
     /// error is returned.
     ///
     /// The mapping to [`ErrorKind`]s is not part of the compatibility contract of the function,