DOC: Minor fixes in docs, for ' → ’

This commit is contained in:
bluss
2017-10-27 22:54:46 +02:00
parent db616eb9c5
commit a2e3fcea3f
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -445,7 +445,7 @@ impl<A: Array> ArrayVec<A> {
/// Shortens the vector, keeping the first `len` elements and dropping
/// the rest.
///
/// If `len` is greater than the vector's current length this has no
/// If `len` is greater than the vectors current length this has no
/// effect.
///
/// ```
@@ -500,7 +500,7 @@ impl<A: Array> ArrayVec<A> {
}
}
/// Set the vector's length without dropping or moving out elements
/// Set the vectors length without dropping or moving out elements
///
/// This method is `unsafe` because it changes the notion of the
/// number of “valid” elements in the vector. Use with care.