diff --git a/framed/src/typed.rs b/framed/src/typed.rs index dc83fc3..f83cf4e 100644 --- a/framed/src/typed.rs +++ b/framed/src/typed.rs @@ -186,8 +186,8 @@ impl Codec { /// /// ## Examples /// - /// See the [no_std usage example][ex] in the `typed` module documentation. - /// [ex]: index.html#example-usage-from-a-no_std-crate + /// See the [no_std usage example](index.html#example-usage-from-a-no_std-crate) + /// in the `typed` module documentation. pub fn encode_to_slice( &mut self, v: &T, @@ -217,8 +217,8 @@ impl Codec { /// /// ## Examples /// - /// See the [no_std usage example][ex] in the `typed` module documentation. - /// [ex]: index.html#example-usage-from-a-no_std-crate + /// See the [no_std usage example](index.html#example-usage-from-a-no_std-crate) + /// in the `typed` module documentation. pub fn decode_from_slice( &mut self, e: &Encoded, @@ -259,8 +259,8 @@ const_fn! { /// /// ## Examples /// -/// See the [std usage example][ex] in the `typed` module documentation. -/// [ex]: index.html#example-usage-from-a-std-crate +/// See the [std usage example](index.html#example-usage-from-a-std-crate) +/// in the `typed` module documentation. #[cfg(feature = "use_std")] pub struct Sender { codec: Codec, @@ -329,8 +329,8 @@ impl Sender { /// /// ## Examples /// -/// See the [std usage example][ex] in the `typed` module documentation. -/// [ex]: index.html#example-usage-from-a-std-crate +/// See the [std usage example](index.html#example-usage-from-a-std-crate) +/// in the `typed` module documentation. #[cfg(feature = "use_std")] pub struct Receiver { codec: Codec,