Skip to content

Commit cab478a

Browse files
author
Lukas Markeffsky
committed
fix some stability annotations
1 parent ecd55b1 commit cab478a

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

core/src/array/mod.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! *[See also the array primitive type](array).*
44
5-
#![stable(feature = "core_array", since = "1.36.0")]
5+
#![stable(feature = "core_array", since = "1.35.0")]
66

77
use crate::borrow::{Borrow, BorrowMut};
88
use crate::cmp::Ordering;
@@ -154,10 +154,11 @@ pub const fn from_mut<T>(s: &mut T) -> &mut [T; 1] {
154154

155155
/// The error type returned when a conversion from a slice to an array fails.
156156
#[stable(feature = "try_from", since = "1.34.0")]
157+
#[rustc_allowed_through_unstable_modules]
157158
#[derive(Debug, Copy, Clone)]
158159
pub struct TryFromSliceError(());
159160

160-
#[stable(feature = "core_array", since = "1.36.0")]
161+
#[stable(feature = "core_array", since = "1.35.0")]
161162
impl fmt::Display for TryFromSliceError {
162163
#[inline]
163164
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {

core/src/char/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
//! functions that convert various types to `char`.
1919
2020
#![allow(non_snake_case)]
21-
#![stable(feature = "core_char", since = "1.2.0")]
21+
#![stable(feature = "rust1", since = "1.0.0")]
2222

2323
mod convert;
2424
mod decode;

std/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ pub mod prelude;
481481

482482
#[stable(feature = "rust1", since = "1.0.0")]
483483
pub use core::any;
484-
#[stable(feature = "core_array", since = "1.36.0")]
484+
#[stable(feature = "core_array", since = "1.35.0")]
485485
pub use core::array;
486486
#[unstable(feature = "async_iterator", issue = "79024")]
487487
pub use core::async_iter;

0 commit comments

Comments
 (0)