Skip to content

Commit cc6e326

Browse files
committed
Auto merge of #13489 - linyihai:typo-two, r=weihanglo
chore: fixed a typo(two->too) ### What does this PR try to resolve? typo: `for two long` corrected by `for too long` ### How should we test and review this PR? ### Additional information
2 parents f415cb2 + 4ca0524 commit cc6e326

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cargo/core/resolver/types.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ impl ResolverProgress {
6969
// The largest test in our suite takes less then 5000 ticks
7070
// with all the algorithm improvements.
7171
// If any of them are removed then it takes more than I am willing to measure.
72-
// So lets fail the test fast if we have ben running for two long.
72+
// So lets fail the test fast if we have been running for too long.
7373
assert!(
7474
self.ticks < 50_000,
7575
"got to 50_000 ticks in {:?}",
@@ -78,7 +78,7 @@ impl ResolverProgress {
7878
// The largest test in our suite takes less then 30 sec
7979
// with all the improvements to how fast a tick can go.
8080
// If any of them are removed then it takes more than I am willing to measure.
81-
// So lets fail the test fast if we have ben running for two long.
81+
// So lets fail the test fast if we have been running for too long.
8282
if self.ticks % 1000 == 0 {
8383
assert!(
8484
self.start.elapsed() - self.deps_time

0 commit comments

Comments
 (0)