Skip to content

Commit 6786696

Browse files
authored
Merge pull request #3 from cuviper/remove-old-docs
Clean up old irrelevant docs
2 parents 1116ddb + aee0a63 commit 6786696

File tree

3 files changed

+0
-7
lines changed

3 files changed

+0
-7
lines changed

src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
//! [`map::serde_seq`] module.
4040
//! * `borsh`: Adds implementations for [`BorshSerialize`] and [`BorshDeserialize`]
4141
//! to [`RingMap`] and [`RingSet`].
42-
//! `use borsh_derive::{BorshSerialize, BorshDeserialize};`.
4342
//! * `arbitrary`: Adds implementations for the [`arbitrary::Arbitrary`] trait
4443
//! to [`RingMap`] and [`RingSet`].
4544
//! * `quickcheck`: Adds implementations for the [`quickcheck::Arbitrary`] trait

src/map/slice.rs

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ use core::ops::{self, Bound, Index, IndexMut, RangeBounds};
1212
///
1313
/// This supports indexed operations much like a `[(K, V)]` slice,
1414
/// but not any hashed operations on the map keys.
15-
///
16-
/// Unlike `RingMap`, `Slice` does consider the order for [`PartialEq`]
17-
/// and [`Eq`], and it also implements [`PartialOrd`], [`Ord`], and [`Hash`].
1815
#[repr(transparent)]
1916
pub struct Slice<K, V> {
2017
pub(crate) entries: [Bucket<K, V>],

src/set/slice.rs

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ use core::ops::{self, Bound, Index, RangeBounds};
1212
///
1313
/// This supports indexed operations much like a `[T]` slice,
1414
/// but not any hashed operations on the values.
15-
///
16-
/// Unlike `RingSet`, `Slice` does consider the order for [`PartialEq`]
17-
/// and [`Eq`], and it also implements [`PartialOrd`], [`Ord`], and [`Hash`].
1815
#[repr(transparent)]
1916
pub struct Slice<T> {
2017
pub(crate) entries: [Bucket<T>],

0 commit comments

Comments
 (0)