Skip to content

Commit 73eba49

Browse files
committed
doc+fix: Broken intra doc links
1 parent 36d4b3e commit 73eba49

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/data_tree.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ use super::size::Size;
99
/// Disk usage data of a filesystem tree.
1010
///
1111
/// **Serialization and deserialization:** _(feature: `json`)_ `DataTree` does not implement
12-
/// [`Serialize`](serde::Serialize) and [`Deserialize`](serde::Deserialize) traits directly,
13-
/// instead, it can be converted into/from a [`Reflection`] which implements these traits.
12+
/// `Serialize` and `Deserialize` traits directly, instead, it can be converted into/from a
13+
/// [`Reflection`] which implements these traits.
1414
#[derive(Debug, PartialEq, Eq)]
1515
pub struct DataTree<Name, Data: Size> {
1616
name: Name,

src/data_tree/reflection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use serde::{Deserialize, Serialize};
2525
/// use [`par_try_into_tree`](Self::par_try_into_tree).
2626
///
2727
/// **Serialization and deserialization:** _(feature: `json`)_ `Reflection` implements
28-
/// [`Serialize`] and [`Deserialize`] traits, this allows functions in [`serde_json`] to convert
28+
/// `Serialize` and `Deserialize` traits, this allows functions in `serde_json` to convert
2929
/// a `Reflection` into/from JSON.
3030
#[derive(Debug, Clone, PartialEq, Eq)]
3131
#[cfg_attr(feature = "json", derive(Deserialize, Serialize))]

0 commit comments

Comments
 (0)