diff --git a/src/rcore/serialization.rs b/src/rcore/serialization.rs index 0a3cd7b..e27caba 100644 --- a/src/rcore/serialization.rs +++ b/src/rcore/serialization.rs @@ -39,7 +39,9 @@ pub trait Deserializer { fn read_n(&mut self, n: usize) -> &[u8]; /// Read til the end of the stream. fn read_all(&mut self) -> &[u8]; - /// Current position of the stream. Used by [`crate::rstd::inlining::CheckedParse`]. + /// Current position of the stream. Used by [`CheckedParse`]. + /// + /// [`CheckedParse`]: crate::rstd::inlining::CheckedParse fn tell(&self) -> usize; }