commit 0850389ef3a62e6df7d27ccb69c7778638654e36
parent f7b80775bd3a7fcf27350f100897136630496b18
Author: Jared Tobin <jared@jtobin.io>
Date: Mon, 17 Mar 2025 07:15:58 +0400
lib: haddock emphasis fix
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/Crypto/Curve/Secp256k1.hs b/lib/Crypto/Curve/Secp256k1.hs
@@ -297,11 +297,11 @@ _CURVE_G = Projective x y 1 where
x = 0x79be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798
y = 0x483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8
--- | secp256k1 zero point / point at infinity / monoidal identity.
+-- | secp256k1 zero point, point at infinity, or monoidal identity.
_CURVE_ZERO :: Projective
_CURVE_ZERO = Projective 0 1 0
--- secp256k1 zero point / point at infinity / monoidal identity
+-- secp256k1 zero point, point at infinity, or monoidal identity
_ZERO :: Projective
_ZERO = Projective 0 1 0
{-# DEPRECATED _ZERO "use _CURVE_ZERO instead" #-}