Skip to content

Commit 395763c

Browse files
Fix typo in comment (#372)
1 parent 2390f2d commit 395763c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ fn test_from_vec() {
861861

862862
#[test]
863863
fn test_retain() {
864-
// Test inline data storate
864+
// Test inline data storage
865865
let mut sv: SmallVec<i32, 5> = SmallVec::from_slice(&[1, 2, 3, 3, 4]);
866866
sv.retain(|&mut i| i != 3);
867867
assert_eq!(sv.pop(), Some(4));

0 commit comments

Comments
 (0)