Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
lballabio committed Dec 13, 2023
1 parent 1cfefcf commit 55f945c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz-test-suite/amortizedbondsfuzzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* Data, size_t Size) {
// Assert invariants, these should always be true.
assert(coupon > 0.0);
assert(principal > 0.0);
assert(totalAmout > lastTotalAmount);
assert(totalAmount > lastTotalAmount);
lastTotalAmount = totalAmount;
_unused(lastTotalAmount);
}
Expand Down

0 comments on commit 55f945c

Please sign in to comment.