From 642aad68a32d8c8d8ed05bedb67c4a3095bba9fe Mon Sep 17 00:00:00 2001 From: Daira Hopwood Date: Sat, 20 Feb 2021 21:54:50 +0000 Subject: [PATCH] Revert comment changes that are no longer relevant, now that we don't expose the isogenous curves in the API --- src/arithmetic/curves.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arithmetic/curves.rs b/src/arithmetic/curves.rs index 837ac6b..7243f34 100644 --- a/src/arithmetic/curves.rs +++ b/src/arithmetic/curves.rs @@ -60,7 +60,7 @@ pub trait Curve: /// Obtains the additive identity. fn zero() -> Self; - /// Obtains the base point of the curve, if defined. + /// Obtains the base point of the curve. fn one() -> Self; /// Doubles this element. @@ -162,7 +162,7 @@ pub trait CurveAffine: /// Obtains the additive identity. fn zero() -> Self; - /// Obtains the base point of the curve, if defined. + /// Obtains the base point of the curve. fn one() -> Self; /// Returns whether or not this element is the identity.