1
Fork 0

Fix minor doc typos

This commit is contained in:
Virgile Andreani 2014-01-30 19:29:35 +01:00 committed by Alex Crichton
parent 2c8b112580
commit b9a026afba
27 changed files with 55 additions and 55 deletions

View file

@ -804,7 +804,7 @@ pub trait CloneableVector<T> {
/// Copy `self` into a new owned vector
fn to_owned(&self) -> ~[T];
/// Convert `self` into a owned vector, not making a copy if possible.
/// Convert `self` into an owned vector, not making a copy if possible.
fn into_owned(self) -> ~[T];
}