diff --git a/src/rcore/hashing.rs b/src/rcore/hashing.rs index 5284246..0194dfb 100644 --- a/src/rcore/hashing.rs +++ b/src/rcore/hashing.rs @@ -3,7 +3,7 @@ pub const HASH_SIZE: usize = 32; /// Zeroed out array of the same length as [`type@Hash`]. /// Used in [`nullable`]. -/// +/// /// [`nullable`]: crate::rstd::nullable pub const HASH_ZEROS: [u8; HASH_SIZE] = [0; HASH_SIZE]; diff --git a/src/rcore/slice_deserializer.rs b/src/rcore/slice_deserializer.rs index 04d100c..f3ef093 100644 --- a/src/rcore/slice_deserializer.rs +++ b/src/rcore/slice_deserializer.rs @@ -2,7 +2,9 @@ use std::cmp::min; use super::*; -/// [Deserializer] for slices. Used in [`FactoryExt::parse_slice`] and [`crate::rstd::atomic::AtomicExt::parse_slice`]. +/// [Deserializer] for slices. Used in [`FactoryExt::parse_slice`] and [`AtomicExt::parse_slice`]. +/// +/// [`AtomicExt::parse_slice`]: crate::rstd::atomic::AtomicExt::parse_slice pub struct SliceDeserializer<'a> { slice: &'a [u8], pos: usize,