diff --git a/src/lib.rs b/src/lib.rs index 0281954..d76c03e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -209,6 +209,7 @@ pub trait Integer: Sized + Num + PartialOrd + Ord + Eq { } /// Deprecated, use `is_multiple_of` instead. + #[deprecated(note = "Please use is_multiple_of instead")] fn divides(&self, other: &Self) -> bool; /// Returns `true` if `self` is a multiple of `other`.