Skip to content

Commit 9a1a6a7

Browse files
committed
style: lint fixes
1 parent 7a3c1aa commit 9a1a6a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/chunk.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,8 +484,8 @@ mod tests {
484484

485485
// Test mixing prepend and append
486486
let mixed = Chunk::default()
487-
.prepend(1) // [1]
488-
.append(2) // [1, 2]
487+
.prepend(1) // [1]
488+
.append(2) // [1, 2]
489489
.prepend(3); // [3, 1, 2]
490490
assert_eq!(mixed.as_vec(), vec![3, 1, 2]);
491491
}

0 commit comments

Comments
 (0)