docs: Make rustdoc imports more terse

Make the rustdoc imports in `hashes/src/lib.rs` more terse and also use
as-underscore.
This commit is contained in:
Tobin C. Harding 2024-04-25 10:53:56 +10:00
parent fe8ce059b4
commit 47ac342056
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 3 additions and 6 deletions

View File

@ -12,8 +12,7 @@
//! Hashing a single byte slice or a string:
//!
//! ```rust
//! use bitcoin_hashes::sha256;
//! use bitcoin_hashes::Hash;
//! use bitcoin_hashes::{sha256, Hash as _};
//!
//! let bytes = [0u8; 5];
//! let hash_of_bytes = sha256::Hash::hash(&bytes);
@ -24,8 +23,7 @@
//! Hashing content from a reader:
//!
//! ```rust
//! use bitcoin_hashes::sha256;
//! use bitcoin_hashes::Hash;
//! use bitcoin_hashes::{sha256, Hash as _};
//!
//! #[cfg(std)]
//! # fn main() -> std::io::Result<()> {
@ -44,8 +42,7 @@
//! Hashing content by [`std::io::Write`] on HashEngine:
//!
//! ```rust
//! use bitcoin_hashes::sha256;
//! use bitcoin_hashes::Hash;
//! use bitcoin_hashes::{sha256, Hash as _};
//! use std::io::Write;
//!
//! #[cfg(std)]