@@ -1911,7 +1911,7 @@ impl<T, A: Allocator> VecDeque<T, A> {
19111911 /// ```
19121912 #[ unstable( feature = "push_mut" , issue = "135974" ) ]
19131913 #[ track_caller]
1914- #[ must_use = "if you don't need a reference to the value, use VecDeque::push_front instead" ]
1914+ #[ must_use = "if you don't need a reference to the value, use ` VecDeque::push_front` instead" ]
19151915 pub fn push_front_mut ( & mut self , value : T ) -> & mut T {
19161916 if self . is_full ( ) {
19171917 self . grow ( ) ;
@@ -1957,7 +1957,7 @@ impl<T, A: Allocator> VecDeque<T, A> {
19571957 /// ```
19581958 #[ unstable( feature = "push_mut" , issue = "135974" ) ]
19591959 #[ track_caller]
1960- #[ must_use = "if you don't need a reference to the value, use VecDeque::push_back instead" ]
1960+ #[ must_use = "if you don't need a reference to the value, use ` VecDeque::push_back` instead" ]
19611961 pub fn push_back_mut ( & mut self , value : T ) -> & mut T {
19621962 if self . is_full ( ) {
19631963 self . grow ( ) ;
@@ -2100,7 +2100,7 @@ impl<T, A: Allocator> VecDeque<T, A> {
21002100 /// ```
21012101 #[ unstable( feature = "push_mut" , issue = "135974" ) ]
21022102 #[ track_caller]
2103- #[ must_use = "if you don't need a reference to the value, use VecDeque::insert instead" ]
2103+ #[ must_use = "if you don't need a reference to the value, use ` VecDeque::insert` instead" ]
21042104 pub fn insert_mut ( & mut self , index : usize , value : T ) -> & mut T {
21052105 assert ! ( index <= self . len( ) , "index out of bounds" ) ;
21062106
0 commit comments