From e48ffe2118e8733f3715c37319996bd5dbfc59b6 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 31 Dec 2023 11:36:44 -0700 Subject: [PATCH] Update src/identities.rs --- src/identities.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/identities.rs b/src/identities.rs index bc6c56a..2e3f1d5 100644 --- a/src/identities.rs +++ b/src/identities.rs @@ -30,9 +30,6 @@ pub trait Zero: Sized + Add { /// Defines an associated constant representing the additive identity element /// for `Self`. -/// -/// Types which impl both this trait and [`PartialEq`] will receive a blanket -/// impl of the [`Zero`] trait. pub trait ConstZero: Zero { /// The additive identity element of `Self`, `0`. const ZERO: Self;