From fb51ac7794727ea5dfd16a0a70ff96c4cf095606 Mon Sep 17 00:00:00 2001 From: Jay Strict Date: Tue, 19 Dec 2017 15:11:00 +0100 Subject: [PATCH] Fix mistaken identity in documentation comment --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index af84e76..a871f68 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -86,7 +86,7 @@ pub trait Integer: Sized + Num + PartialOrd + Ord + Eq { /// Deprecated, use `is_multiple_of` instead. fn divides(&self, other: &Self) -> bool; - /// Returns `true` if `other` is a multiple of `self`. + /// Returns `true` if `self` is a multiple of `other`. /// /// # Examples ///