@@ -21,15 +21,15 @@ use marker::Sized;
2121/// A cheap, reference-to-reference conversion.
2222#[ stable( feature = "rust1" , since = "1.0.0" ) ]
2323pub trait AsRef < T : ?Sized > {
24- /// Perform the conversion.
24+ /// Performs the conversion.
2525 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
2626 fn as_ref ( & self ) -> & T ;
2727}
2828
2929/// A cheap, mutable reference-to-mutable reference conversion.
3030#[ stable( feature = "rust1" , since = "1.0.0" ) ]
3131pub trait AsMut < T : ?Sized > {
32- /// Perform the conversion.
32+ /// Performs the conversion.
3333 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
3434 fn as_mut ( & mut self ) -> & mut T ;
3535}
@@ -38,15 +38,15 @@ pub trait AsMut<T: ?Sized> {
3838/// expensive.
3939#[ stable( feature = "rust1" , since = "1.0.0" ) ]
4040pub trait Into < T > : Sized {
41- /// Perform the conversion.
41+ /// Performs the conversion.
4242 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
4343 fn into ( self ) -> T ;
4444}
4545
4646/// Construct `Self` via a conversion.
4747#[ stable( feature = "rust1" , since = "1.0.0" ) ]
4848pub trait From < T > {
49- /// Perform the conversion.
49+ /// Performs the conversion.
5050 #[ stable( feature = "rust1" , since = "1.0.0" ) ]
5151 fn from ( T ) -> Self ;
5252}
0 commit comments