From fbeba958b41801cd358cd134780b77cfa25721f9 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 22 Aug 2024 15:03:40 +1000 Subject: [PATCH] Add missing > to rustdoc --- src/v2/map/input.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v2/map/input.rs b/src/v2/map/input.rs index 50623c2..5ba0caf 100644 --- a/src/v2/map/input.rs +++ b/src/v2/map/input.rs @@ -323,7 +323,7 @@ impl Input { /// Returns true if this input has been finalized. /// /// > It checks whether all inputs have complete scriptSigs and scriptWitnesses by checking for - /// the presence of 0x07 Finalized scriptSig and 0x08 Finalized scriptWitness typed records. + /// > the presence of 0x07 Finalized scriptSig and 0x08 Finalized scriptWitness typed records. /// /// Therefore a finalized input must have both `final_script_sig` and `final_script_witness` /// fields set. For legacy transactions the `final_script_witness` will be an empty [`Witness`].