@@ -482,7 +482,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
482482 ///
483483 /// assert_eq!(X.get(), 123);
484484 /// ```
485- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
485+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
486486 pub fn set ( & ' static self , value : T ) {
487487 self . initialize_with ( Cell :: new ( value) , |init, cell| {
488488 if let Some ( init) = init {
@@ -513,7 +513,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
513513 ///
514514 /// assert_eq!(X.get(), 1);
515515 /// ```
516- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
516+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
517517 pub fn get ( & ' static self ) -> T
518518 where
519519 T : Copy ,
@@ -544,7 +544,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
544544 /// assert_eq!(X.take(), Some(1));
545545 /// assert_eq!(X.take(), None);
546546 /// ```
547- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
547+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
548548 pub fn take ( & ' static self ) -> T
549549 where
550550 T : Default ,
@@ -575,7 +575,7 @@ impl<T: 'static> LocalKey<Cell<T>> {
575575 /// assert_eq!(X.replace(2), 1);
576576 /// assert_eq!(X.replace(3), 2);
577577 /// ```
578- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
578+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
579579 pub fn replace ( & ' static self , value : T ) -> T {
580580 self . with ( |cell| cell. replace ( value) )
581581 }
@@ -606,7 +606,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
606606 ///
607607 /// X.with_borrow(|v| assert!(v.is_empty()));
608608 /// ```
609- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
609+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
610610 pub fn with_borrow < F , R > ( & ' static self , f : F ) -> R
611611 where
612612 F : FnOnce ( & T ) -> R ,
@@ -640,7 +640,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
640640 ///
641641 /// X.with_borrow(|v| assert_eq!(*v, vec![1]));
642642 /// ```
643- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
643+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
644644 pub fn with_borrow_mut < F , R > ( & ' static self , f : F ) -> R
645645 where
646646 F : FnOnce ( & mut T ) -> R ,
@@ -675,7 +675,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
675675 ///
676676 /// X.with_borrow(|v| assert_eq!(*v, vec![1, 2, 3]));
677677 /// ```
678- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
678+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
679679 pub fn set ( & ' static self , value : T ) {
680680 self . initialize_with ( RefCell :: new ( value) , |init, cell| {
681681 if let Some ( init) = init {
@@ -714,7 +714,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
714714 ///
715715 /// X.with_borrow(|v| assert!(v.is_empty()));
716716 /// ```
717- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
717+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
718718 pub fn take ( & ' static self ) -> T
719719 where
720720 T : Default ,
@@ -746,7 +746,7 @@ impl<T: 'static> LocalKey<RefCell<T>> {
746746 ///
747747 /// X.with_borrow(|v| assert_eq!(*v, vec![1, 2, 3]));
748748 /// ```
749- #[ unstable( feature = "local_key_cell_methods" , issue = "none " ) ]
749+ #[ unstable( feature = "local_key_cell_methods" , issue = "92122 " ) ]
750750 pub fn replace ( & ' static self , value : T ) -> T {
751751 self . with ( |cell| cell. replace ( value) )
752752 }
0 commit comments