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

Commit 8f5346d

Browse files
authored
Fix clippy line-too-long warning (#28)
clippy emits: warning: first doc comment paragraph is too long Separate the two sentences so the first line is not too long.
2 parents 2fc70c8 + 6783f18 commit 8f5346d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

jsonrpc/src/http/simple_http.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
// SPDX-License-Identifier: CC0-1.0
22

33
//! This module implements a minimal and non standard conforming HTTP 1.0
4-
//! round-tripper that works with the bitcoind RPC server. This can be used
5-
//! if minimal dependencies are a goal and synchronous communication is ok.
4+
//! round-tripper that works with the bitcoind RPC server.
5+
//!
6+
//! This can be used if minimal dependencies are a goal and
7+
//! synchronous communication is ok.
68
79
use std::io::{BufRead, BufReader, Read, Write};
810
#[cfg(not(jsonrpc_fuzz))]

0 commit comments

Comments
 (0)