Skip to content

Commit 3d89ee9

Browse files
scottmcmAmanieu
andauthored
Typo fix
Thanks, Amanieu Co-authored-by: Amanieu d'Antras <[email protected]>
1 parent 2c8a4c8 commit 3d89ee9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/alloc/src/vec.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2813,7 +2813,7 @@ impl<T, const N: usize> TryFrom<Vec<T>> for [T; N] {
28132813
// SAFETY: `.set_len(0)` is always sound.
28142814
unsafe { vec.set_len(0) };
28152815

2816-
// SAFETY: A `Vec`'s pointer is always aligned property, and
2816+
// SAFETY: A `Vec`'s pointer is always aligned properly, and
28172817
// the alignment the array needs is the same as the items.
28182818
// We checked earlier that we have sufficient items.
28192819
// The items will not double-drop as the `set_len`

0 commit comments

Comments
 (0)