Skip to content

Commit

Permalink
Rollup merge of #121149 - SebastianJL:patch-1, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
Fix typo in VecDeque::handle_capacity_increase() doc comment.

Strategies B and C both show a full buffer before the capacity increase, while strategy A had one empty element left. Filled the last element in.
  • Loading branch information
matthiaskrgr authored Feb 17, 2024
2 parents 60cc6b9 + 1706687 commit cb37179
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions library/alloc/src/collections/vec_deque/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,10 +485,10 @@ impl<T, A: Allocator> VecDeque<T, A> {
// H := head
// L := last element (`self.to_physical_idx(self.len - 1)`)
//
// H L
// [o o o o o o o . ]
// H L
// A [o o o o o o o . . . . . . . . . ]
// H L
// [o o o o o o o o ]
// H L
// A [o o o o o o o o . . . . . . . . ]
// L H
// [o o o o o o o o ]
// H L
Expand Down

0 comments on commit cb37179

Please sign in to comment.