Remove rustdocs links to serde

These links are broken just use code ticks instead since `serde` is
feature gated and these docs are private anyways.
This commit is contained in:
Tobin C. Harding 2023-05-26 16:50:46 +10:00
parent 1318ff88e5
commit 24843468c3
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ macro_rules! engine_input_impl(
/// You can add arbitrary doc comments or other attributes to the struct or it's field. Note that /// You can add arbitrary doc comments or other attributes to the struct or it's field. Note that
/// the macro already derives [`Copy`], [`Clone`], [`Eq`], [`PartialEq`], /// the macro already derives [`Copy`], [`Clone`], [`Eq`], [`PartialEq`],
/// [`Hash`](core::hash::Hash), [`Ord`], [`PartialOrd`]. With the `serde` feature on, this also adds /// [`Hash`](core::hash::Hash), [`Ord`], [`PartialOrd`]. With the `serde` feature on, this also adds
/// [`Serialize`](serde::Serialize) and [`Deserialize](serde::Deserialize) implementations. /// `Serialize` and `Deserialize` implementations.
/// ///
/// You can also define multiple newtypes within one macro call: /// You can also define multiple newtypes within one macro call:
/// ///