Auto merge of #34876 - frewsxcv:vec-as-mut-slice, r=alexcrichton

Remove unnecessary indexing and deref in `Vec::as_mut_slice`.

None
This commit is contained in:
bors
2016-07-17 12:04:51 -07:00
committed by GitHub
+1 -1
View File
@@ -520,7 +520,7 @@ pub fn as_slice(&self) -> &[T] {
#[inline]
#[stable(feature = "vec_as_slice", since = "1.7.0")]
pub fn as_mut_slice(&mut self) -> &mut [T] {
&mut self[..]
self
}
/// Sets the length of a vector.