Skip to content

Commit 9ab5788

Browse files
committed
Fix "since" version for getpid feature.
It was stabilized right before the beta branch was cut for 1.26.0. See rust-lang#49523 (comment)
1 parent 5ee891c commit 9ab5788

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/process.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1426,7 +1426,7 @@ pub fn abort() -> ! {
14261426
/// ```
14271427
///
14281428
///
1429-
#[stable(feature = "getpid", since = "1.27.0")]
1429+
#[stable(feature = "getpid", since = "1.26.0")]
14301430
pub fn id() -> u32 {
14311431
::sys::os::getpid()
14321432
}

0 commit comments

Comments
 (0)