Merge rust-bitcoin/rust-bitcoin#2790: Removed spare line at end of headers in internals crate

6c1a5401a7 Removed //! spare line at end of headers (jamil.lambert)

Pull request description:

  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

ACKs for top commit:
  apoelstra:
    ACK 6c1a5401a7

Tree-SHA512: be86b35dc8cf0083dddfefde5b4d1195409523a48f0388285ed049fab8880dd7fbd570d5b15e4f5ed592fa336695130669c5041856da8a7314349f9200a6c66c
This commit is contained in:
Andrew Poelstra 2024-05-22 17:07:14 +00:00
commit 610fedee98
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
3 changed files with 0 additions and 3 deletions

View File

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

View File

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

View File

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