From 9db64d5948039ddce5d7ffefc561c61513d9abca Mon Sep 17 00:00:00 2001 From: bluss Date: Sun, 25 Mar 2018 23:23:32 +0200 Subject: [PATCH] FIX: Fix a typo in a comment --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 3f16fc9..22743c3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -543,7 +543,7 @@ impl ArrayVec { // Memory safety // // 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. // // Drain will ptr::read out the values to remove.