Skip to content

Commit 07a397a

Browse files
committed
Merge rust-bitcoin#5132: chore: add the missing spaces in the comments
9eb9ade chore: add the missing spaces in the comments (letreturn) Pull request description: add the missing spaces in the comments ACKs for top commit: tcharding: ACK 9eb9ade apoelstra: ACK 9eb9ade; successfully ran local tests Tree-SHA512: 952488f11adc274154fba001edb6680d91d38c23960d3e7c800af50f152682e2faca5c6179e59caff96daee62a83f9046c056cfa9bde98b4e9b40765de21a894
2 parents 39afe9f + 9eb9ade commit 07a397a

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

addresses/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// Exclude lints we don't think are valuable.
2222
#![allow(clippy::needless_question_mark)] // https://github.com/rust-bitcoin/rust-bitcoin/pull/2134
2323
#![allow(clippy::manual_range_contains)] // More readable than clippy's format.
24-
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)`instead of enforcing `format!("{x}")`
24+
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)` instead of enforcing `format!("{x}")`
2525

2626
extern crate alloc;
2727

base58/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#![allow(clippy::needless_question_mark)] // https://github.com/rust-bitcoin/rust-bitcoin/pull/2134
2222
#![allow(clippy::manual_range_contains)] // More readable than clippy's format.
2323
#![allow(clippy::incompatible_msrv)] // Has FPs and we're testing it which is more reliable anyway.
24-
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)`instead of enforcing `format!("{x}")`
24+
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)` instead of enforcing `format!("{x}")`
2525

2626
extern crate alloc;
2727

bitcoin/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#![allow(clippy::needless_question_mark)] // https://github.com/rust-bitcoin/rust-bitcoin/pull/2134
3838
#![allow(clippy::manual_range_contains)] // More readable than clippy's format.
3939
#![allow(clippy::incompatible_msrv)] // Has FPs and we're testing it which is more reliable anyway.
40-
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)`instead of enforcing `format!("{x}")`
40+
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)` instead of enforcing `format!("{x}")`
4141

4242
// We only support machines with index size of 4 bytes or more.
4343
//

hashes/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
// Exclude lints we don't think are valuable.
6565
#![allow(clippy::needless_question_mark)] // https://github.com/rust-bitcoin/rust-bitcoin/pull/2134
6666
#![allow(clippy::manual_range_contains)] // More readable than clippy's format.
67-
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)`instead of enforcing `format!("{x}")`
67+
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)` instead of enforcing `format!("{x}")`
6868

6969
#[cfg(feature = "alloc")]
7070
extern crate alloc;

hashes/tests/api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#![allow(dead_code)]
1010
#![allow(unused_imports)]
1111
// Exclude lints we don't think are valuable.
12-
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)`instead of enforcing `format!("{x}")`
12+
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)` instead of enforcing `format!("{x}")`
1313

1414
// Import using module style e.g., `sha256::Hash`.
1515
use bitcoin_hashes::{

hashes/tests/regression.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
#![cfg(feature = "hex")]
88
// Exclude lints we don't think are valuable.
9-
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)`instead of enforcing `format!("{x}")`
9+
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)` instead of enforcing `format!("{x}")`
1010

1111
use bitcoin_hashes::{
1212
hash160, ripemd160, sha1, sha256, sha256d, sha256t, sha384, sha3_256, sha512, sha512_256,

internals/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Exclude lints we don't think are valuable.
2-
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)`instead of enforcing `format!("{x}")`
2+
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)` instead of enforcing `format!("{x}")`
33

44
const MAX_USED_VERSION: u64 = 80;
55

internals/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// Exclude lints we don't think are valuable.
1616
#![allow(clippy::needless_question_mark)] // https://github.com/rust-bitcoin/rust-bitcoin/pull/2134
1717
#![allow(clippy::manual_range_contains)] // More readable than clippy's format.
18-
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)`instead of enforcing `format!("{x}")`
18+
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)` instead of enforcing `format!("{x}")`
1919

2020
#[cfg(feature = "alloc")]
2121
extern crate alloc;

io/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
// Exclude lints we don't think are valuable.
2525
#![allow(clippy::needless_question_mark)] // https://github.com/rust-bitcoin/rust-bitcoin/pull/2134
2626
#![allow(clippy::manual_range_contains)] // More readable than clippy's format.
27-
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)`instead of enforcing `format!("{x}")`
27+
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)` instead of enforcing `format!("{x}")`
2828

2929
#[cfg(feature = "alloc")]
3030
extern crate alloc;

primitives/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#![warn(deprecated_in_future)]
2121
#![doc(test(attr(warn(unused))))]
2222
// Exclude lints we don't think are valuable.
23-
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)`instead of enforcing `format!("{x}")`
23+
#![allow(clippy::uninlined_format_args)] // Allow `format!("{}", x)` instead of enforcing `format!("{x}")`
2424

2525
#[cfg(feature = "alloc")]
2626
extern crate alloc;

0 commit comments

Comments
 (0)