Merge rust-bitcoin/rust-bitcoin#4591: chore: add missing backticks

3dd538d04b chore: add missing backticks (findmyhappy)

Pull request description:

  Add missing backtick in comment.

ACKs for top commit:
  tcharding:
    ACK 3dd538d04b
  apoelstra:
    ACK 3dd538d04bad6e07b04cd8c2b3fb14d09625389f; successfully ran local tests

Tree-SHA512: ae36752c1c097e3b72d59e6e77f45f0474c7703d0eb32f4df434b0a7bb1e037e4415cf385ef22e20f86ebb407d42bdd35b26fd7f7029a6210be29bc434231eb7
This commit is contained in:
merge-script 2025-06-05 15:49:42 +00:00
commit c0d51ed9dc
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ static SCRIPT: ScriptBuf = ScriptBuf::new();
static BYTES: [u8; 32] = [0x00; 32]; static BYTES: [u8; 32] = [0x00; 32];
/// Public structs that derive common traits. /// Public structs that derive common traits.
// C-COMMON-TRAITS excluding `Debug, Default, Display, Ord, PartialOrd, Hash`. // C-COMMON-TRAITS excluding `Debug`, `Default`, `Display`, `Ord`, `PartialOrd, `Hash`.
#[derive(Clone, PartialEq, Eq)] #[derive(Clone, PartialEq, Eq)]
struct CommonTraits { struct CommonTraits {
a: block::Block<Checked>, a: block::Block<Checked>,
@ -120,7 +120,7 @@ struct Clone<'a> {
} }
/// Public structs that derive common traits. /// Public structs that derive common traits.
// C-COMMON-TRAITS excluding `Clone`, `Debug, `Default`, and `Display` // C-COMMON-TRAITS excluding `Clone`, `Debug`, `Default`, and `Display`
#[derive(PartialEq, Eq, PartialOrd, Ord, Hash)] #[derive(PartialEq, Eq, PartialOrd, Ord, Hash)]
struct Ord { struct Ord {
// a: block::Block<Checked>, // a: block::Block<Checked>,