File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -638,7 +638,7 @@ shr_impl!(uint u8 u16 u32 u64 int i8 i16 i32 i64)
638
638
* ```
639
639
*/
640
640
#[ lang="index" ]
641
- pub trait Index < Index , Sized ? Result > for Sized ? {
641
+ pub trait Index < Sized ? Index , Sized ? Result > for Sized ? {
642
642
/// The method for the indexing (`Foo[Bar]`) operation
643
643
fn index < ' a > ( & ' a self , index : & Index ) -> & ' a Result ;
644
644
}
@@ -669,7 +669,7 @@ pub trait Index<Index, Sized? Result> for Sized? {
669
669
* ```
670
670
*/
671
671
#[ lang="index_mut" ]
672
- pub trait IndexMut < Index , Result > for Sized ? {
672
+ pub trait IndexMut < Sized ? Index , Result > for Sized ? {
673
673
/// The method for the indexing (`Foo[Bar]`) operation
674
674
fn index_mut < ' a > ( & ' a mut self , index : & Index ) -> & ' a mut Result ;
675
675
}
You can’t perform that action at this time.
0 commit comments