File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 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> {
710710 /// # Examples
711711 ///
712712 /// ```
713- /// #![feature(bound_map)]
714713 /// use std::ops::Bound::*;
715714 ///
716715 /// let bound_string = Included("Hello, World!");
@@ -719,7 +718,6 @@ impl<T> Bound<T> {
719718 /// ```
720719 ///
721720 /// ```
722- /// #![feature(bound_map)]
723721 /// use std::ops::Bound;
724722 /// use Bound::*;
725723 ///
@@ -728,7 +726,7 @@ impl<T> Bound<T> {
728726 /// assert_eq!(unbounded_string.map(|s| s.len()), Unbounded);
729727 /// ```
730728 #[ inline]
731- #[ unstable ( feature = "bound_map" , issue = "86026 " ) ]
729+ #[ stable ( feature = "bound_map" , since = "CURRENT_RUSTC_VERSION " ) ]
732730 pub fn map < U , F : FnOnce ( T ) -> U > ( self , f : F ) -> Bound < U > {
733731 match self {
734732 Unbounded => Unbounded ,
You can’t perform that action at this time.
0 commit comments