diff --git a/src/libcore/convert.rs b/src/libcore/convert.rs index 4a99f1a756a..85b648bbd59 100644 --- a/src/libcore/convert.rs +++ b/src/libcore/convert.rs @@ -21,7 +21,7 @@ use marker::Sized; /// A cheap, reference-to-reference conversion. #[stable(feature = "rust1", since = "1.0.0")] pub trait AsRef { - /// Perform the conversion. + /// Performs the conversion. #[stable(feature = "rust1", since = "1.0.0")] fn as_ref(&self) -> &T; } @@ -29,7 +29,7 @@ pub trait AsRef { /// A cheap, mutable reference-to-mutable reference conversion. #[stable(feature = "rust1", since = "1.0.0")] pub trait AsMut { - /// Perform the conversion. + /// Performs the conversion. #[stable(feature = "rust1", since = "1.0.0")] fn as_mut(&mut self) -> &mut T; } @@ -38,7 +38,7 @@ pub trait AsMut { /// expensive. #[stable(feature = "rust1", since = "1.0.0")] pub trait Into: Sized { - /// Perform the conversion. + /// Performs the conversion. #[stable(feature = "rust1", since = "1.0.0")] fn into(self) -> T; } @@ -46,7 +46,7 @@ pub trait Into: Sized { /// Construct `Self` via a conversion. #[stable(feature = "rust1", since = "1.0.0")] pub trait From { - /// Perform the conversion. + /// Performs the conversion. #[stable(feature = "rust1", since = "1.0.0")] fn from(T) -> Self; }