File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -764,13 +764,13 @@ pub trait Slice<Idx, Sized? Result> for Sized? {
764
764
// FIXME(#17273) remove the postscript _s
765
765
#[ lang="slice_mut" ]
766
766
pub trait SliceMut < Idx , Sized ? Result > for Sized ? {
767
- /// The method for the slicing operation foo[]
767
+ /// The method for the slicing operation foo[mut ]
768
768
fn as_mut_slice_ < ' a > ( & ' a mut self ) -> & ' a mut Result ;
769
- /// The method for the slicing operation foo[from..]
769
+ /// The method for the slicing operation foo[mut from..]
770
770
fn slice_from_mut_ < ' a > ( & ' a mut self , from : & Idx ) -> & ' a mut Result ;
771
- /// The method for the slicing operation foo[..to]
771
+ /// The method for the slicing operation foo[mut ..to]
772
772
fn slice_to_mut_ < ' a > ( & ' a mut self , to : & Idx ) -> & ' a mut Result ;
773
- /// The method for the slicing operation foo[from..to]
773
+ /// The method for the slicing operation foo[mut from..to]
774
774
fn slice_mut_ < ' a > ( & ' a mut self , from : & Idx , to : & Idx ) -> & ' a mut Result ;
775
775
}
776
776
/**
You can’t perform that action at this time.
0 commit comments