Remove a stale doc comment on `set_zero()`

This commit is contained in:
Josh Stone 2019-03-28 12:30:22 -07:00
parent 87d4dbc418
commit 09e27abaa0
1 changed files with 0 additions and 1 deletions

View File

@ -20,7 +20,6 @@ pub trait Zero: Sized + Add<Self, Output = Self> {
fn zero() -> Self;
/// Sets `self` to the additive identity element of `Self`, `0`.
/// Returns `&mut self` to enable method chaining.
fn set_zero(&mut self) {
*self = Zero::zero();
}