Skip to content

Commit 5d2c698

Browse files
committed
Correcting accidental reference to std::Vec
1 parent b5a4deb commit 5d2c698

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/k_smallest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use alloc::vec::IntoIter;
1+
use alloc::vec::{Vec, IntoIter};
22
use core::cmp::{Ordering, Reverse};
33

44
/// Consumes a given iterator, returning the minimum elements in **ascending** order.

0 commit comments

Comments
 (0)