Skip to content

Commit 6af59e8

Browse files
committed
Rollup merge of #49612 - tmccombs:stabilize-getpid, r=kennytm
Fix "since" version for getpid feature. It was stabilized right before the beta branch was cut for 1.26.0. See #49523 (comment) This will need to be backported to beta (1.26.0)
2 parents 0878e0f + 9ab5788 commit 6af59e8

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)