Rollup merge of #121149 - SebastianJL:patch-1, r=Mark-Simulacrum
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.
This commit is contained in:
commit
cb371797d6
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue