File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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 ) ]
1515pub struct DataTree < Name , Data : Size > {
1616 name : Name ,
Original file line number Diff line number Diff 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 ) ) ]
You can’t perform that action at this time.
0 commit comments