From 7712e5d891abcf55be868a7ddbee2fdc152cdbce Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 19 Jun 2024 11:18:07 +1000 Subject: [PATCH] bitcoin: Use 100 colum width in crate level docs We have various different column widths being used in a single rustdoc block, since we favour 100 for comments around here use it. No text changes, whitespace only. --- bitcoin/src/lib.rs | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/bitcoin/src/lib.rs b/bitcoin/src/lib.rs index 5fdbe4fb1..1a978457f 100644 --- a/bitcoin/src/lib.rs +++ b/bitcoin/src/lib.rs @@ -2,16 +2,14 @@ //! # Rust Bitcoin Library //! -//! This is a library that supports the Bitcoin network protocol and associated -//! primitives. It is designed for Rust programs built to work with the Bitcoin -//! network. +//! This is a library that supports the Bitcoin network protocol and associated primitives. It is +//! designed for Rust programs built to work with the Bitcoin network. //! -//! Except for its dependency on libsecp256k1 (and optionally libbitcoinconsensus), -//! this library is written entirely in Rust. It illustrates the benefits of -//! strong type safety, including ownership and lifetime, for financial and/or cryptographic software. +//! Except for its dependency on libsecp256k1 (and optionally libbitcoinconsensus), this library is +//! written entirely in Rust. It illustrates the benefits of strong type safety, including ownership +//! and lifetime, for financial and/or cryptographic software. //! -//! See README.md for detailed documentation about development and supported -//! environments. +//! See README.md for detailed documentation about development and supported environments. //! //! ## Available feature flags //!