about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Paseltiner <apaseltiner@gmail.com>2015-04-04 10:26:14 -0400
committerAndrew Paseltiner <apaseltiner@gmail.com>2015-04-04 10:26:14 -0400
commit2d198955d329904cbd54531e6f404a5648ace19f (patch)
tree8fe0b854a3106bc3257c287fc01880cbb6bff1d3
parent6971727d45494b8362262bb41a45f2c0c5f162bc (diff)
downloadrust-2d198955d329904cbd54531e6f404a5648ace19f.tar.gz
rust-2d198955d329904cbd54531e6f404a5648ace19f.zip
s/Perform/Performs/
Per [RFC #0505](https://github.com/rust-lang/rfcs/blob/master/text/0505-api-comment-conventions.md#formatting).
-rw-r--r--src/libcore/convert.rs8
1 files changed, 4 insertions, 4 deletions
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<T: ?Sized> {
-    /// 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<T: ?Sized> {
 /// A cheap, mutable reference-to-mutable reference conversion.
 #[stable(feature = "rust1", since = "1.0.0")]
 pub trait AsMut<T: ?Sized> {
-    /// 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<T: ?Sized> {
 /// expensive.
 #[stable(feature = "rust1", since = "1.0.0")]
 pub trait Into<T>: 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<T>: Sized {
 /// Construct `Self` via a conversion.
 #[stable(feature = "rust1", since = "1.0.0")]
 pub trait From<T> {
-    /// Perform the conversion.
+    /// Performs the conversion.
     #[stable(feature = "rust1", since = "1.0.0")]
     fn from(T) -> Self;
 }