Skip to content

Commit 495953d

Browse files
committed
Fix typo
1 parent c06ec52 commit 495953d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/branch_and_bound.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ mod tests {
806806
assert_eq!(amount_sum, target);
807807
} else {
808808
// if result was none, then assert that fail happened because overflow when
809-
// ssumming pool. In the future, assert specific error when added.
809+
// summing pool. In the future, assert specific error when added.
810810
let available_value = utxos.into_iter().map(|u| u.value()).checked_sum();
811811
assert!(available_value.is_none());
812812
}

0 commit comments

Comments
 (0)