about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorAaron Turon <aturon@mozilla.com>2016-12-14 13:02:00 -0800
committerAaron Turon <aturon@mozilla.com>2016-12-16 19:42:17 -0800
commit9a5cef4de51c1c90fb2d05b0c7e6feb9cf0224d6 (patch)
treedfc7eb130baf656785761739b6808efdec694254 /src/libstd/sys
parentfce6af2a6759991b8f31b6dcbee315ccacb2339d (diff)
downloadrust-9a5cef4de51c1c90fb2d05b0c7e6feb9cf0224d6.tar.gz
rust-9a5cef4de51c1c90fb2d05b0c7e6feb9cf0224d6.zip
Address fallout
Diffstat (limited to 'src/libstd/sys')
-rw-r--r--src/libstd/sys/redox/ext/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/redox/ext/process.rs b/src/libstd/sys/redox/ext/process.rs
index 1472242d3db..c59524974bf 100644
--- a/src/libstd/sys/redox/ext/process.rs
+++ b/src/libstd/sys/redox/ext/process.rs
@@ -56,7 +56,7 @@ pub trait CommandExt {
     /// When this closure is run, aspects such as the stdio file descriptors and
     /// working directory have successfully been changed, so output to these
     /// locations may not appear where intended.
-    #[unstable(feature = "process_exec", issue = "31398")]
+    #[stable(feature = "process_exec", since = "1.15.0")]
     fn before_exec<F>(&mut self, f: F) -> &mut process::Command
         where F: FnMut() -> io::Result<()> + Send + Sync + 'static;