Skip to content

Commit

Permalink
Wording
Browse files Browse the repository at this point in the history
  • Loading branch information
squadgazzz committed Nov 28, 2024
1 parent 5ee4503 commit de75f95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/driver/src/tests/cases/settle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ async fn discards_excess_settle_requests() {
.len();
assert_eq!(unique_solutions_count, solution_ids.len());

// `collect_vec` is required to execute futures in the same order.
// `collect_vec` is required to received results in the same order.
let results = join_all(solution_ids.iter().map(|id| test.settle(id)).collect_vec()).await;

for (index, result) in results.into_iter().enumerate() {
Expand Down Expand Up @@ -215,8 +215,8 @@ async fn accepts_new_settle_requests_after_timeout() {
.len();
assert_eq!(unique_solutions_count, solution_id.len());

// Send only first 4 settle requests. `collect_vec` is required to execute
// futures in the same order.
// Send only first 4 settle requests. `collect_vec` is required to received
// results in the same order.
let results = join_all(
solution_id[..4]
.iter()
Expand Down

0 comments on commit de75f95

Please sign in to comment.