Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Fix clippy line-too-long warning (#28)
Browse files Browse the repository at this point in the history
clippy emits:

 warning: first doc comment paragraph is too long

Separate the two sentences so the first line is not too long.
  • Loading branch information
tcharding authored Sep 2, 2024
2 parents 2fc70c8 + 6783f18 commit 8f5346d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions jsonrpc/src/http/simple_http.rs
Original file line number Diff line number Diff line change
@@ -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))]
Expand Down

0 comments on commit 8f5346d

Please sign in to comment.