chore: fix some minor issues in sage comments (#788)

This commit is contained in:
yumeiyin 2025-08-09 04:13:28 +08:00 committed by GitHub
parent 246723eefe
commit 1ad4603e0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -64,7 +64,7 @@ def isqrt_i(x):
else: return False,1/sqrt(x*gen)
class QuotientEdwardsPoint(object):
"""Abstract class for point an a quotiented Edwards curve; needs F,a,d,cofactor to work"""
"""Abstract class for point on a quotiented Edwards curve; needs F,a,d,cofactor to work"""
def __init__(self,x=0,y=1):
x = self.x = self.F(x)
y = self.y = self.F(y)