From 6783f18bf77da4f978166dee92913ce53982d340 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Mon, 2 Sep 2024 16:34:17 +1000 Subject: [PATCH] Fix clippy line-too-long warning clippy emits: warning: first doc comment paragraph is too long Separate the two sentences so the first line is not too long. --- jsonrpc/src/http/simple_http.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/jsonrpc/src/http/simple_http.rs b/jsonrpc/src/http/simple_http.rs index de104ff..75ad67b 100644 --- a/jsonrpc/src/http/simple_http.rs +++ b/jsonrpc/src/http/simple_http.rs @@ -1,8 +1,10 @@ // SPDX-License-Identifier: CC0-1.0 //! This module implements a minimal and non standard conforming HTTP 1.0 -//! round-tripper that works with the bitcoind RPC server. This can be used -//! if minimal dependencies are a goal and synchronous communication is ok. +//! round-tripper that works with the bitcoind RPC server. +//! +//! This can be used if minimal dependencies are a goal and +//! synchronous communication is ok. use std::io::{BufRead, BufReader, Read, Write}; #[cfg(not(jsonrpc_fuzz))]