@@ -196,41 +196,41 @@ pub mod all {
196196 pub const OP_PUSHDATA2 : All = All { code : 0x4d } ;
197197 /// Read the next 4 bytes as N; push the next N bytes as an array onto the stack
198198 pub const OP_PUSHDATA4 : All = All { code : 0x4e } ;
199- /// Push the array [0x81] onto the stack
199+ /// Push the array ` [0x81]` onto the stack
200200 pub const OP_PUSHNUM_NEG1 : All = All { code : 0x4f } ;
201201 /// Synonym for OP_RETURN
202202 pub const OP_RESERVED : All = All { code : 0x50 } ;
203- /// Push the array [0x01] onto the stack
203+ /// Push the array ` [0x01]` onto the stack
204204 pub const OP_PUSHNUM_1 : All = All { code : 0x51 } ;
205- /// Push the array [0x02] onto the stack
205+ /// Push the array ` [0x02]` onto the stack
206206 pub const OP_PUSHNUM_2 : All = All { code : 0x52 } ;
207- /// Push the array [0x03] onto the stack
207+ /// Push the array ` [0x03]` onto the stack
208208 pub const OP_PUSHNUM_3 : All = All { code : 0x53 } ;
209- /// Push the array [0x04] onto the stack
209+ /// Push the array ` [0x04]` onto the stack
210210 pub const OP_PUSHNUM_4 : All = All { code : 0x54 } ;
211- /// Push the array [0x05] onto the stack
211+ /// Push the array ` [0x05]` onto the stack
212212 pub const OP_PUSHNUM_5 : All = All { code : 0x55 } ;
213- /// Push the array [0x06] onto the stack
213+ /// Push the array ` [0x06]` onto the stack
214214 pub const OP_PUSHNUM_6 : All = All { code : 0x56 } ;
215- /// Push the array [0x07] onto the stack
215+ /// Push the array ` [0x07]` onto the stack
216216 pub const OP_PUSHNUM_7 : All = All { code : 0x57 } ;
217- /// Push the array [0x08] onto the stack
217+ /// Push the array ` [0x08]` onto the stack
218218 pub const OP_PUSHNUM_8 : All = All { code : 0x58 } ;
219- /// Push the array [0x09] onto the stack
219+ /// Push the array ` [0x09]` onto the stack
220220 pub const OP_PUSHNUM_9 : All = All { code : 0x59 } ;
221- /// Push the array [0x0a] onto the stack
221+ /// Push the array ` [0x0a]` onto the stack
222222 pub const OP_PUSHNUM_10 : All = All { code : 0x5a } ;
223- /// Push the array [0x0b] onto the stack
223+ /// Push the array ` [0x0b]` onto the stack
224224 pub const OP_PUSHNUM_11 : All = All { code : 0x5b } ;
225- /// Push the array [0x0c] onto the stack
225+ /// Push the array ` [0x0c]` onto the stack
226226 pub const OP_PUSHNUM_12 : All = All { code : 0x5c } ;
227- /// Push the array [0x0d] onto the stack
227+ /// Push the array ` [0x0d]` onto the stack
228228 pub const OP_PUSHNUM_13 : All = All { code : 0x5d } ;
229- /// Push the array [0x0e] onto the stack
229+ /// Push the array ` [0x0e]` onto the stack
230230 pub const OP_PUSHNUM_14 : All = All { code : 0x5e } ;
231- /// Push the array [0x0f] onto the stack
231+ /// Push the array ` [0x0f]` onto the stack
232232 pub const OP_PUSHNUM_15 : All = All { code : 0x5f } ;
233- /// Push the array [0x10] onto the stack
233+ /// Push the array ` [0x10]` onto the stack
234234 pub const OP_PUSHNUM_16 : All = All { code : 0x60 } ;
235235 /// Does nothing
236236 pub const OP_NOP : All = All { code : 0x61 } ;
@@ -385,9 +385,9 @@ pub mod all {
385385 pub const OP_HASH256 : All = All { code : 0xaa } ;
386386 /// Ignore this and everything preceding when deciding what to sign when signature-checking
387387 pub const OP_CODESEPARATOR : All = All { code : 0xab } ;
388- /// https://en.bitcoin.it/wiki/OP_CHECKSIG pushing 1/0 for success/failure
388+ /// < https://en.bitcoin.it/wiki/OP_CHECKSIG> pushing 1/0 for success/failure
389389 pub const OP_CHECKSIG : All = All { code : 0xac } ;
390- /// https://en.bitcoin.it/wiki/OP_CHECKSIG returning success/failure
390+ /// < https://en.bitcoin.it/wiki/OP_CHECKSIG> returning success/failure
391391 pub const OP_CHECKSIGVERIFY : All = All { code : 0xad } ;
392392 /// Pop N, N pubkeys, M, M signatures, a dummy (due to bug in reference code), and verify that all M signatures are valid.
393393 /// Push 1 for "all valid", 0 otherwise
@@ -396,9 +396,9 @@ pub mod all {
396396 pub const OP_CHECKMULTISIGVERIFY : All = All { code : 0xaf } ;
397397 /// Does nothing
398398 pub const OP_NOP1 : All = All { code : 0xb0 } ;
399- /// https://github.com/bitcoin/bips/blob/master/bip-0065.mediawiki
399+ /// < https://github.com/bitcoin/bips/blob/master/bip-0065.mediawiki>
400400 pub const OP_CLTV : All = All { code : 0xb1 } ;
401- /// https://github.com/bitcoin/bips/blob/master/bip-0112.mediawiki
401+ /// < https://github.com/bitcoin/bips/blob/master/bip-0112.mediawiki>
402402 pub const OP_CSV : All = All { code : 0xb2 } ;
403403 /// Does nothing
404404 pub const OP_NOP4 : All = All { code : 0xb3 } ;
0 commit comments