Skip to content

Commit

Permalink
chore: fixed a typo(two->too)
Browse files Browse the repository at this point in the history
  • Loading branch information
linyihai committed Feb 26, 2024
1 parent 194a60b commit 4ca0524
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cargo/core/resolver/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl ResolverProgress {
// The largest test in our suite takes less then 5000 ticks
// with all the algorithm improvements.
// If any of them are removed then it takes more than I am willing to measure.
// So lets fail the test fast if we have ben running for two long.
// So lets fail the test fast if we have been running for too long.
assert!(
self.ticks < 50_000,
"got to 50_000 ticks in {:?}",
Expand All @@ -78,7 +78,7 @@ impl ResolverProgress {
// The largest test in our suite takes less then 30 sec
// with all the improvements to how fast a tick can go.
// If any of them are removed then it takes more than I am willing to measure.
// So lets fail the test fast if we have ben running for two long.
// So lets fail the test fast if we have been running for too long.
if self.ticks % 1000 == 0 {
assert!(
self.start.elapsed() - self.deps_time
Expand Down

0 comments on commit 4ca0524

Please sign in to comment.