diff --git a/src/rcore/hashing.rs b/src/rcore/hashing.rs index a75a049..2b44862 100644 --- a/src/rcore/hashing.rs +++ b/src/rcore/hashing.rs @@ -1,6 +1,3 @@ -#[cfg(doc)] -use super::*; - /// Fixed [type@Hash] length. pub const HASH_SIZE: usize = 32; @@ -9,4 +6,7 @@ pub const HASH_SIZE: usize = 32; pub const HASH_ZEROS: [u8; HASH_SIZE] = [0; HASH_SIZE]; /// For use in [`Point`]/[`Address`]. +/// +/// [`Point`]: super::Point +/// [`Address`]: super::Address pub type Hash = [u8; HASH_SIZE];