docs: Do not link to std::option::Option
This link breaks when building docs using no-std. Just use code ticks, everyone knows what `Option` is, no need for a link.
This commit is contained in:
parent
24843468c3
commit
154552e334
|
@ -70,11 +70,11 @@ const PSBT_IN_PROPRIETARY: u8 = 0xFC;
|
||||||
#[cfg_attr(feature = "serde", serde(crate = "actual_serde"))]
|
#[cfg_attr(feature = "serde", serde(crate = "actual_serde"))]
|
||||||
pub struct Input {
|
pub struct Input {
|
||||||
/// The non-witness transaction this input spends from. Should only be
|
/// 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.
|
/// if it is unknown whether an input spends a segwit output.
|
||||||
pub non_witness_utxo: Option<Transaction>,
|
pub non_witness_utxo: Option<Transaction>,
|
||||||
/// The transaction output this input spends from. Should only be
|
/// 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.
|
/// including P2SH embedded ones.
|
||||||
pub witness_utxo: Option<TxOut>,
|
pub witness_utxo: Option<TxOut>,
|
||||||
/// A map from public keys to their corresponding signature as would be
|
/// A map from public keys to their corresponding signature as would be
|
||||||
|
|
Loading…
Reference in New Issue