Skip to content

Commit 1c4e959

Browse files
committed
Merge #820: Fix Typos in Documentation and Code Comments
f375b15 Update concrete.rs (leopardracer) 55db2e4 Update cycle.sh (leopardracer) Pull request description: Description: Corrected `Continously` → `Continuously` Corrected `seperated` → `"separated` ACKs for top commit: apoelstra: ACK f375b15; successfully ran local tests Tree-SHA512: f7d759ba42027739d3d3473370b19d96a6d8ece9a64f4f0b49540a62a90b284d298f9fb5911e0ba90be6a88ff40252cb9e8bc1d04d8081208e4a61e7cdfc5223
2 parents 6d1da92 + f375b15 commit 1c4e959

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fuzz/cycle.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
# Continuosly cycle over fuzz targets running each for 1 hour.
3+
# Continuously cycle over fuzz targets running each for 1 hour.
44
# It uses chrt SCHED_IDLE so that other process takes priority.
55
#
66
# For hfuzz options see https://github.com/google/honggfuzz/blob/master/docs/USAGE.md

src/policy/concrete.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ impl<Pk: MiniscriptKey> Policy<Pk> {
442442
let mut to_del: Vec<(f64, Arc<Self>)> = vec![];
443443
'inner: for (i, (p, pol)) in tapleaf_prob_vec.iter().enumerate() {
444444
curr_pol_replace_vec = pol.enumerate_pol(p.0 .0);
445-
enum_len += curr_pol_replace_vec.len() - 1; // A disjunctive node should have seperated this into more nodes
445+
enum_len += curr_pol_replace_vec.len() - 1; // A disjunctive node should have separated this into more nodes
446446
assert!(prev_len <= enum_len);
447447

448448
if prev_len < enum_len {

0 commit comments

Comments
 (0)