We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f717ff commit 62b48bdCopy full SHA for 62b48bd
src/libcore/ops.rs
@@ -687,7 +687,7 @@ pub trait IndexMut<Index, Result> {
687
* ```ignore
688
* struct Foo;
689
*
690
- * impl ::core::ops::Slice<Foo, Foo> for Foo {
+ * impl Slice<Foo, Foo> for Foo {
691
* fn as_slice_<'a>(&'a self) -> &'a Foo {
692
* println!("Slicing!");
693
* self
@@ -736,7 +736,7 @@ pub trait Slice<Idx, Sized? Result> for Sized? {
736
737
738
739
- * impl ::core::ops::SliceMut<Foo, Foo> for Foo {
+ * impl SliceMut<Foo, Foo> for Foo {
740
* fn as_mut_slice_<'a>(&'a mut self) -> &'a mut Foo {
741
742
0 commit comments