Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkrapido committed Nov 1, 2023
1 parent 75a3896 commit 50559f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ impl TimeFilter {
(None, Some(_)) => TimingScenario::AfterOnly,
(Some(_), None) => TimingScenario::BeforeOnly,
(Some(before), Some(after)) if before >= after => TimingScenario::Bounded,
(Some(before), Some(after)) if before < after => TimingScenario::Overflow,
(Some(before), Some(after)) if before < after => TimingScenario::Overflow,
_ => TimingScenario::Unbounded,
}
}
Expand Down

0 comments on commit 50559f6

Please sign in to comment.