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)