diff options
| author | Andreas Tolfsen <ato@sny.no> | 2018-04-17 08:00:48 +0100 |
|---|---|---|
| committer | Andreas Tolfsen <ato@sny.no> | 2018-04-17 08:00:48 +0100 |
| commit | bc4bd5642ab7ccfdaf84c95c8b62f620acbca644 (patch) | |
| tree | 6f0d90228e790b1f5338b06672b23c1990479982 /src | |
| parent | fd2afa01aa614114811ff68ed31c146f7aab1d28 (diff) | |
| download | rust-bc4bd5642ab7ccfdaf84c95c8b62f620acbca644.tar.gz rust-bc4bd5642ab7ccfdaf84c95c8b62f620acbca644.zip | |
fixup! std: Child::kill() returns error if process has already exited
Diffstat (limited to 'src')
| -rw-r--r-- | src/libstd/process.rs | 2 |
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, |
