From 30e7e4877b35e903335b640e90f4adfdd42f1172 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 10 Jul 2023 09:36:18 +1000 Subject: [PATCH] Clean up comments in private error module The `error` module is private so does not technically require module level rustdoc, also the current rustdoc is too general (it is copy'pasta from rust-bitcoin). Just remove it. While we are at it, remove the 'Written by the Rust Bitcoin developers' line because we have removed this everywhere else with the justification that it is just noise. --- src/error.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/error.rs b/src/error.rs index 2f2133770..bf0b94222 100644 --- a/src/error.rs +++ b/src/error.rs @@ -1,11 +1,5 @@ -// Written by the Rust Bitcoin developers. // SPDX-License-Identifier: CC0-1.0 -//! # Error -//! -//! Error handling macros and helpers. -//! - /// Formats error. /// /// If `std` feature is OFF appends error source (delimited by `: `). We do this because