Skip to content

Commit 67e707e

Browse files
committed
docs: correction
1 parent 5c6d827 commit 67e707e

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/hardlink/hardlink_list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct Value<Size> {
2929

3030
/// Storage to be used by [`crate::hardlink::RecordHardlinks`].
3131
///
32-
/// **Reflection:** `HardlinkList` does not implement `PartialEq`, `Eq`, `Hash`,
32+
/// **Reflection:** `HardlinkList` does not implement `PartialEq`, `Eq`,
3333
/// `Deserialize`, and `Serialize` directly. Instead, it can be converted into a
3434
/// [`Reflection`] which implement these traits.
3535
#[derive(Debug, SmartDefault, Clone)]

src/hardlink/hardlink_list/reflection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use serde::{Deserialize, Serialize};
1414
/// * Every inode number is unique.
1515
/// * The internal list is always sorted by inode numbers.
1616
///
17-
/// **Equality and identity:** `Reflection` implements `PartialEq`, `Eq`, and `Hash` traits.
17+
/// **Equality:** `Reflection` implements `PartialEq` and `Eq` traits.
1818
///
1919
/// **Serialization and deserialization:** _(feature: `json`)_ `Reflection` implements
2020
/// `Serialize` and `Deserialize` traits, this allows functions in `serde_json` to convert

src/hardlink/link_path_list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use std::path::PathBuf;
1010

1111
/// List of different hardlinks to the same file.
1212
///
13-
/// **Reflection:** `LinkPathList` does not implement `PartialEq`, `Eq`, `Hash`,
13+
/// **Reflection:** `LinkPathList` does not implement `PartialEq`, `Eq`,
1414
/// `Deserialize`, and `Serialize` directly. Instead, it can be converted into a
1515
/// [`Reflection`] which implement these traits. Do note that the time complexity
1616
/// of such conversion is O(n) as it has to convert a `Vec` into a `HashSet`.

src/hardlink/link_path_list/reflection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use serde::{Deserialize, Serialize};
99
/// Intermediate format used for construction and inspection of
1010
/// [`LinkPathList`]'s internal content.
1111
///
12-
/// **Equality and identity:** `Reflection` implements `PartialEq`, `Eq`, and `Hash` traits.
12+
/// **Equality:** `Reflection` implements `PartialEq` and `Eq` traits.
1313
///
1414
/// **Serialization and deserialization:** _(feature: `json`)_ `Reflection` implements
1515
/// `Serialize` and `Deserialize` traits, this allows functions in `serde_json` to convert

0 commit comments

Comments
 (0)