Removed //! spare line at end of headers

Some of the headers had a //! at the end but most didn't. They have all been removed in internals/src/ to make the files consistent
This commit is contained in:
jamil.lambert 2024-05-22 12:23:57 +01:00
parent eb28c16d87
commit 6c1a5401a7
3 changed files with 0 additions and 3 deletions

View File

@ -3,7 +3,6 @@
//! # Error //! # Error
//! //!
//! Error handling macros and helpers. //! Error handling macros and helpers.
//!
pub mod input_string; pub mod input_string;
mod parse_error; mod parse_error;

View File

@ -4,7 +4,6 @@
//! //!
//! This crate is only meant to be used internally by crates in the //! This crate is only meant to be used internally by crates in the
//! [rust-bitcoin](https://github.com/rust-bitcoin) ecosystem. //! [rust-bitcoin](https://github.com/rust-bitcoin) ecosystem.
//!
#![no_std] #![no_std]
// Experimental features we need. // Experimental features we need.

View File

@ -1,7 +1,6 @@
// SPDX-License-Identifier: CC0-1.0 // SPDX-License-Identifier: CC0-1.0
//! Various macros used by the Rust Bitcoin ecosystem. //! Various macros used by the Rust Bitcoin ecosystem.
//!
/// Implements standard array methods for a given wrapper type. /// Implements standard array methods for a given wrapper type.
#[macro_export] #[macro_export]