FIX: Fix a typo in a comment

This commit is contained in:
bluss
2018-03-25 23:23:32 +02:00
parent 602e55dc67
commit 9db64d5948
+1 -1
View File
@@ -543,7 +543,7 @@ impl<A: Array> ArrayVec<A> {
// Memory safety // Memory safety
// //
// When the Drain is first created, it shortens the length of // When the Drain is first created, it shortens the length of
// the source vector to make sure no uninitalized or moved-from elements // the source vector to make sure no uninitialized or moved-from elements
// are accessible at all if the Drain's destructor never gets to run. // are accessible at all if the Drain's destructor never gets to run.
// //
// Drain will ptr::read out the values to remove. // Drain will ptr::read out the values to remove.