Skip to content

Commit d87e4f3

Browse files
committed
Run cargo fmt.
1 parent 070e399 commit d87e4f3

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/vec/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1228,7 +1228,6 @@ impl<T, const N: usize> TryFrom<alloc::vec::Vec<T>> for Vec<T, N> {
12281228
/// # Errors
12291229
///
12301230
/// Returns `Err` if the length of the `alloc::vec::Vec<T>` is greater than `N`.
1231-
///
12321231
fn try_from(alloc_vec: alloc::vec::Vec<T>) -> Result<Self, Self::Error> {
12331232
let mut vec = Vec::new();
12341233

0 commit comments

Comments
 (0)