Skip to content

Commit 94aafd2

Browse files
committed
chore: Fix spelling issues
1 parent 946901e commit 94aafd2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

fuzz/fuzz_targets/compile_taproot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fn do_test(data: &[u8]) {
2222
let rtt = desc.to_string();
2323
assert_eq!(output.to_lowercase(), rtt.to_lowercase());
2424
} else {
25-
panic!("compiler output something unparseable: {}", output)
25+
panic!("compiler output something unparsable: {}", output)
2626
}
2727
}
2828
}

src/descriptor/checksum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ pub struct Formatter<'f, 'a> {
227227
}
228228

229229
impl<'f, 'a> Formatter<'f, 'a> {
230-
/// Contructs a new `Formatter`, wrapping a given `fmt::Formatter`.
230+
/// Constructs a new `Formatter`, wrapping a given `fmt::Formatter`.
231231
pub fn new(f: &'f mut fmt::Formatter<'a>) -> Self { Formatter { fmt: f, eng: Engine::new() } }
232232

233233
/// Writes the checksum into the underlying `fmt::Formatter`.

src/interpreter/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ impl<'txin> Interpreter<'txin> {
187187
/// - the input index is out of range
188188
/// - Insufficient sighash information is present
189189
/// - sighash single without corresponding output
190-
// TODO: Create a good first isse to change this to error
190+
// TODO: Create a good first issue to change this to error
191191
// TODO: Requires refactor to remove the script_code logic in order to use the new sighash API.
192192
#[allow(deprecated)] // For segwit_signature_hash
193193
pub fn verify_sig<C: secp256k1::Verification, T: Borrow<TxOut>>(

0 commit comments

Comments
 (0)