From a8fbd5e302fb02b0eaba373c32401204d35e6d98 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 30 Dec 2024 13:39:29 +1100 Subject: [PATCH] units: Remove api docs These docs a way too prone to going stale; we only wrote these a week ago and they are stale already. Lets just remove them. --- units/tests/api.rs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/units/tests/api.rs b/units/tests/api.rs index 2ae373c2f..63bdd7fe0 100644 --- a/units/tests/api.rs +++ b/units/tests/api.rs @@ -4,18 +4,6 @@ //! //! The point of these tests are to check the API surface as opposed to test the API functionality. //! -//! What this module tests: -//! -//! - The location of re-exports for various typical usage styles. -//! - Regressions in the API surface (things being accidentally moved). -//! - All public types implement Debug (C-DEBUG). -//! - For all non-error types: -//! - `Debug` representation is never empty (C-DEBUG-NONEMPTY) -//! - For all error types: -//! - Derive standard traits as defined by `rust-bitcoin` policy. -//! -//! This file was created by referring to the output of `cargo check-api`. -//! //! ref: #![allow(dead_code)]