File tree 1 file changed +1
-3
lines changed
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -710,7 +710,6 @@ impl<T> Bound<T> {
710
710
/// # Examples
711
711
///
712
712
/// ```
713
- /// #![feature(bound_map)]
714
713
/// use std::ops::Bound::*;
715
714
///
716
715
/// let bound_string = Included("Hello, World!");
@@ -719,7 +718,6 @@ impl<T> Bound<T> {
719
718
/// ```
720
719
///
721
720
/// ```
722
- /// #![feature(bound_map)]
723
721
/// use std::ops::Bound;
724
722
/// use Bound::*;
725
723
///
@@ -728,7 +726,7 @@ impl<T> Bound<T> {
728
726
/// assert_eq!(unbounded_string.map(|s| s.len()), Unbounded);
729
727
/// ```
730
728
#[ inline]
731
- #[ unstable ( feature = "bound_map" , issue = "86026 " ) ]
729
+ #[ stable ( feature = "bound_map" , since = "CURRENT_RUSTC_VERSION " ) ]
732
730
pub fn map < U , F : FnOnce ( T ) -> U > ( self , f : F ) -> Bound < U > {
733
731
match self {
734
732
Unbounded => Unbounded ,
You can’t perform that action at this time.
0 commit comments