diff --git a/bitcoin/src/psbt/map/input.rs b/bitcoin/src/psbt/map/input.rs index 5e610ceb..39dd8349 100644 --- a/bitcoin/src/psbt/map/input.rs +++ b/bitcoin/src/psbt/map/input.rs @@ -70,11 +70,11 @@ const PSBT_IN_PROPRIETARY: u8 = 0xFC; #[cfg_attr(feature = "serde", serde(crate = "actual_serde"))] pub struct Input { /// The non-witness transaction this input spends from. Should only be - /// [std::option::Option::Some] for inputs which spend non-segwit outputs or + /// `Option::Some` for inputs which spend non-segwit outputs or /// if it is unknown whether an input spends a segwit output. pub non_witness_utxo: Option, /// The transaction output this input spends from. Should only be - /// [std::option::Option::Some] for inputs which spend segwit outputs, + /// `Option::Some` for inputs which spend segwit outputs, /// including P2SH embedded ones. pub witness_utxo: Option, /// A map from public keys to their corresponding signature as would be