Skip to content

Commit ee2b14c

Browse files
committed
Merge rust-bitcoin#5083: docs: fix typos
430fe3d docs: fix grammar (MozirDmitriy) 7ea04d4 docs: fix typo (MozirDmitriy) 745fa02 Extra quotation mark in doc comment (MozirDmitriy) Pull request description: in sighash.rs - extra " in message.rs "on at" in sequence.rs - "if any of it's inputs" -> "if any of its inputs" ACKs for top commit: apoelstra: ACK 430fe3d; successfully ran local tests Tree-SHA512: 9f343ac74a893911364bdd09780a797c15718765633c8e4bfb31da4038f8fca583c1402b4861c82f81e1e9a25eac0eea3029e75efd628fa0dec585626dc47162
2 parents f686521 + 430fe3d commit ee2b14c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bitcoin/src/crypto/sighash.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ sha256t_tag! {
8686
hash_newtype! {
8787
/// Taproot-tagged hash with tag \"TapSighash\".
8888
///
89-
/// This hash type is used for computing Taproot signature hash."
89+
/// This hash type is used for computing Taproot signature hash.
9090
pub struct TapSighash(sha256t::Hash<TapSighashTag>);
9191
}
9292

p2p/src/message.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ impl_vec_wrapper!(InventoryPayload, message_blockdata::Inventory);
203203
impl_vec_wrapper!(AddrPayload, (u32, Address));
204204
impl_vec_wrapper!(AddrV2Payload, AddrV2Message);
205205

206-
/// A Network message payload. Proper documentation is available on at
206+
/// A Network message payload. Proper documentation is available at
207207
/// [Bitcoin Wiki: Protocol Specification](https://en.bitcoin.it/wiki/Protocol_specification)
208208
#[derive(Clone, PartialEq, Eq, Debug)]
209209
pub enum NetworkMessage {

units/src/sequence.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ impl Sequence {
6464
/// The lowest sequence number that does not opt-in for replace-by-fee.
6565
///
6666
/// A transaction is considered to have opted in to replacement of itself
67-
/// if any of it's inputs have a `Sequence` number less than this value
67+
/// if any of its inputs have a `Sequence` number less than this value
6868
/// (Explicit Signalling [BIP-0125]).
6969
///
7070
/// [BIP-0125]: <https://github.com/bitcoin/bips/blob/master/bip-0125.mediawiki>

0 commit comments

Comments
 (0)