Преглед на файлове

Make doc comment less scary.

Clar Charr преди 7 години
родител
ревизия
45856ee846
променени са 1 файла, в които са добавени 3 реда и са изтрити 2 реда
  1. 3 2
      src/identities.rs

+ 3 - 2
src/identities.rs

@@ -82,8 +82,9 @@ pub trait One: Sized + Mul<Self, Output = Self> {
 
     /// Returns `true` if `self` is equal to the multiplicative identity.
     ///
-    /// Compatibility note: this method will be a requirement to implement in the future; new
-    /// implementors should provide it for future-compatibility.
+    /// For performance reasons, it's best to implement this manually.
+    /// After a semver bump, this method will be required, and the
+    /// `where Self: PartialEq` bound will be removed.
     fn is_one(&self) -> bool where Self: PartialEq {
         *self == Self::one()
     }