From 6c1a5401a72b84ccb4fe70187254c8282d4b989c Mon Sep 17 00:00:00 2001 From: "jamil.lambert" Date: Wed, 22 May 2024 12:23:57 +0100 Subject: [PATCH] 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 --- internals/src/error.rs | 1 - internals/src/lib.rs | 1 - internals/src/macros.rs | 1 - 3 files changed, 3 deletions(-) diff --git a/internals/src/error.rs b/internals/src/error.rs index 6731ae138..9d52822de 100644 --- a/internals/src/error.rs +++ b/internals/src/error.rs @@ -3,7 +3,6 @@ //! # Error //! //! Error handling macros and helpers. -//! pub mod input_string; mod parse_error; diff --git a/internals/src/lib.rs b/internals/src/lib.rs index bcbd3f26c..d9af9bac0 100644 --- a/internals/src/lib.rs +++ b/internals/src/lib.rs @@ -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. diff --git a/internals/src/macros.rs b/internals/src/macros.rs index 7ec8e2447..715f9cb78 100644 --- a/internals/src/macros.rs +++ b/internals/src/macros.rs @@ -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]