@@ -198,7 +198,7 @@ impl<Item, Gap> RelationalLinkedChunk<Item, Gap> {
198
198
} )
199
199
. expect ( "Previous chunk should be present" ) ;
200
200
201
- // Insert the chunk.
201
+ // Link the chunk.
202
202
entry_for_previous_chunk. next_chunk = Some ( new) ;
203
203
}
204
204
@@ -211,7 +211,7 @@ impl<Item, Gap> RelationalLinkedChunk<Item, Gap> {
211
211
} )
212
212
. expect ( "Next chunk should be present" ) ;
213
213
214
- // Insert the chunk.
214
+ // Link the chunk.
215
215
entry_for_next_chunk. previous_chunk = Some ( new) ;
216
216
}
217
217
@@ -360,7 +360,7 @@ mod tests {
360
360
] ,
361
361
) ;
362
362
363
- // Chunks are correctly links .
363
+ // Chunks are correctly linked .
364
364
assert_eq ! (
365
365
relational_linked_chunk. chunks,
366
366
& [
@@ -419,7 +419,7 @@ mod tests {
419
419
] ,
420
420
) ;
421
421
422
- // Chunks are correctly links .
422
+ // Chunks are correctly linked .
423
423
assert_eq ! (
424
424
relational_linked_chunk. chunks,
425
425
& [
@@ -462,7 +462,7 @@ mod tests {
462
462
] ,
463
463
) ;
464
464
465
- // Chunks are correctly links .
465
+ // Chunks are correctly linked .
466
466
assert_eq ! (
467
467
relational_linked_chunk. chunks,
468
468
& [
@@ -550,7 +550,7 @@ mod tests {
550
550
] ,
551
551
) ;
552
552
553
- // Chunks are correctly links .
553
+ // Chunks are correctly linked .
554
554
assert_eq ! (
555
555
relational_linked_chunk. chunks,
556
556
& [ ChunkRow {
@@ -607,7 +607,7 @@ mod tests {
607
607
] ,
608
608
) ;
609
609
610
- // Chunks are correctly links .
610
+ // Chunks are correctly linked .
611
611
assert_eq ! (
612
612
relational_linked_chunk. chunks,
613
613
& [
0 commit comments