Skip to content

Commit 590d452

Browse files
committed
Master is 1.55 now :(
1 parent 65a0a8b commit 590d452

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/core/src/ops/control_flow.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ use crate::{convert, ops};
4646
/// }
4747
/// }
4848
/// ```
49-
#[stable(feature = "control_flow_enum_type", since = "1.54.0")]
49+
#[stable(feature = "control_flow_enum_type", since = "1.55.0")]
5050
#[derive(Debug, Clone, Copy, PartialEq)]
5151
pub enum ControlFlow<B, C = ()> {
5252
/// Move on to the next phase of the operation as normal.
53-
#[stable(feature = "control_flow_enum_type", since = "1.54.0")]
53+
#[stable(feature = "control_flow_enum_type", since = "1.55.0")]
5454
#[cfg_attr(not(bootstrap), lang = "Continue")]
5555
Continue(C),
5656
/// Exit the operation without running subsequent phases.
57-
#[stable(feature = "control_flow_enum_type", since = "1.54.0")]
57+
#[stable(feature = "control_flow_enum_type", since = "1.55.0")]
5858
#[cfg_attr(not(bootstrap), lang = "Break")]
5959
Break(B),
6060
// Yes, the order of the variants doesn't match the type parameters.

0 commit comments

Comments
 (0)