about summary refs log tree commit diff
path: root/src/libstd/process.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-07-31 02:57:34 +0000
committerbors <bors@rust-lang.org>2015-07-31 02:57:34 +0000
commitcb250b722e8c9c8b2e6dff249ce8e027dce2cd65 (patch)
treed461b5e0dc9af3ffe4f051f31cd5b1450977130e /src/libstd/process.rs
parentdc966ef95cf9c428b29e1346e54768f7411466c8 (diff)
parent76db37ee4b916a678181b36e42c26d92524e7041 (diff)
downloadrust-cb250b722e8c9c8b2e6dff249ce8e027dce2cd65.tar.gz
rust-cb250b722e8c9c8b2e6dff249ce8e027dce2cd65.zip
Auto merge of #27370 - alexcrichton:stabilize-easy, r=brson
The following APIs were all marked with a `#[stable]` tag:

* process::Child::id
* error::Error::is
* error::Error::downcast
* error::Error::downcast_ref
* error::Error::downcast_mut
* io::Error::get_ref
* io::Error::get_mut
* io::Error::into_inner
* hash::Hash::hash_slice
* hash::Hasher::write_{i,u}{8,16,32,64,size}
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 fefd7bb051f..74a66558627 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -505,7 +505,7 @@ impl Child {
     }
 
     /// Returns the OS-assigned process identifier associated with this child.
-    #[unstable(feature = "process_id", reason = "api recently added")]
+    #[stable(feature = "process_id", since = "1.3.0")]
     pub fn id(&self) -> u32 {
         self.handle.id()
     }