Skip to content

Commit 7fd9a90

Browse files
authored
fix missing 'w' in "these two calls" in script.rs
1 parent c2cce97 commit 7fd9a90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bitcoin/examples/script.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ fn main() {
6565
let decoded: WitnessScriptBuf = encode::deserialize_hex(&encoded).unwrap();
6666
assert_eq!(decoded, script_code);
6767

68-
// And we can mix these to calls because both include the length prefix.
68+
// And we can mix these two calls because both include the length prefix.
6969
let encoded = encode::serialize_hex(&script_code);
7070
let decoded = WitnessScriptBuf::from_hex_prefixed(&encoded).unwrap();
7171
assert_eq!(decoded, script_code);

0 commit comments

Comments
 (0)