Skip to content

Commit bce485b

Browse files
committed
Merge #857: chore: Fix spelling issues
94aafd2 chore: Fix spelling issues (aliendya54) Pull request description: ### Description - Corrected misspellings: - `unparseable` → `unparsable` - `Contructs` → `Constructs` - `isse` → `issue` ACKs for top commit: apoelstra: ACK 94aafd2; successfully ran local tests; thanks! Tree-SHA512: 9f29e6ef5072fde00e91ba66fd1a77b7a770d18425d25df266b45c8afb9b2a3d6bf1405e1d58fa05af9bcbbdf30e6c5518368d88282bc6540568d87c0a990aec
2 parents 43e9680 + 94aafd2 commit bce485b

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)