File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -692,15 +692,15 @@ pub trait IndexMut<Index, Result> {
692
692
* println!("Slicing!");
693
693
* self
694
694
* }
695
- * fn slice_from_or_fail<'a>(&'a self, from : &Foo) -> &'a Foo {
695
+ * fn slice_from_or_fail<'a>(&'a self, _from : &Foo) -> &'a Foo {
696
696
* println!("Slicing!");
697
697
* self
698
698
* }
699
- * fn slice_to_or_fail<'a>(&'a self, to : &Foo) -> &'a Foo {
699
+ * fn slice_to_or_fail<'a>(&'a self, _to : &Foo) -> &'a Foo {
700
700
* println!("Slicing!");
701
701
* self
702
702
* }
703
- * fn slice_or_fail<'a>(&'a self, from : &Foo, to : &Foo) -> &'a Foo {
703
+ * fn slice_or_fail<'a>(&'a self, _from : &Foo, _to : &Foo) -> &'a Foo {
704
704
* println!("Slicing!");
705
705
* self
706
706
* }
@@ -741,15 +741,15 @@ pub trait Slice<Idx, Sized? Result> for Sized? {
741
741
* println!("Slicing!");
742
742
* self
743
743
* }
744
- * fn slice_from_or_fail_mut<'a>(&'a mut self, from : &Foo) -> &'a mut Foo {
744
+ * fn slice_from_or_fail_mut<'a>(&'a mut self, _from : &Foo) -> &'a mut Foo {
745
745
* println!("Slicing!");
746
746
* self
747
747
* }
748
- * fn slice_to_or_fail_mut<'a>(&'a mut self, to : &Foo) -> &'a mut Foo {
748
+ * fn slice_to_or_fail_mut<'a>(&'a mut self, _to : &Foo) -> &'a mut Foo {
749
749
* println!("Slicing!");
750
750
* self
751
751
* }
752
- * fn slice_or_fail_mut<'a>(&'a mut self, from : &Foo, to : &Foo) -> &'a mut Foo {
752
+ * fn slice_or_fail_mut<'a>(&'a mut self, _from : &Foo, _to : &Foo) -> &'a mut Foo {
753
753
* println!("Slicing!");
754
754
* self
755
755
* }
You can’t perform that action at this time.
0 commit comments