diff options
| author | Steven Fackler <sfackler@gmail.com> | 2017-05-10 21:17:24 -0700 |
|---|---|---|
| committer | Steven Fackler <sfackler@gmail.com> | 2017-05-20 21:58:47 -0700 |
| commit | 7c2cd93b2bf3c84b97ea798617105a6f85529d23 (patch) | |
| tree | 0eee8e5518460e34ae3f1183fc137d8d79147ed9 /src/libstd/process.rs | |
| parent | d8215fc238a974950fcd4155a34f5383ebb589b9 (diff) | |
| download | rust-7c2cd93b2bf3c84b97ea798617105a6f85529d23.tar.gz rust-7c2cd93b2bf3c84b97ea798617105a6f85529d23.zip | |
Stabilize library features for 1.18.0
Closes #38863 Closes #38980 Closes #38903 Closes #36648
Diffstat (limited to 'src/libstd/process.rs')
| -rw-r--r-- | src/libstd/process.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs index 3896fc20a2d..a05dfb7bffe 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -905,8 +905,6 @@ impl Child { /// Basic usage: /// /// ```no_run - /// #![feature(process_try_wait)] - /// /// use std::process::Command; /// /// let mut child = Command::new("ls").spawn().unwrap(); @@ -921,7 +919,7 @@ impl Child { /// Err(e) => println!("error attempting to wait: {}", e), /// } /// ``` - #[unstable(feature = "process_try_wait", issue = "38903")] + #[stable(feature = "process_try_wait", since = "1.18.0")] pub fn try_wait(&mut self) -> io::Result<Option<ExitStatus>> { Ok(self.handle.try_wait()?.map(ExitStatus)) } |
