From 784ccc97ca3fcb1892a97ec53eb30ed588a8e26a Mon Sep 17 00:00:00 2001 From: bluss Date: Sat, 1 Dec 2018 12:13:37 +0100 Subject: [PATCH] DOC: Remove warning on ArrayVec's into_inner method --- src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 54c9b4c..b7ed449 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -614,9 +614,6 @@ impl ArrayVec { /// /// Return an `Ok` value with the array if length equals capacity, /// return an `Err` with self otherwise. - /// - /// `Note:` This function may incur unproportionally large overhead - /// to move the array out, its performance is not optimal. pub fn into_inner(self) -> Result { if self.len() < self.capacity() { Err(self)