From b6e1b52a44071e736ea2329559250070ed80607d Mon Sep 17 00:00:00 2001 From: Sean Bowe Date: Thu, 8 Mar 2018 13:03:07 -0700 Subject: [PATCH] Fix comment about Montgomery curve selection --- src/jubjub/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jubjub/mod.rs b/src/jubjub/mod.rs index cff5c4a..ca874c6 100644 --- a/src/jubjub/mod.rs +++ b/src/jubjub/mod.rs @@ -5,7 +5,7 @@ //! value `A` is the smallest integer choice such that: //! //! * `(A - 2) / 4` is a small integer (`10240`). -//! * `A^2 - 4` is quadratic residue. +//! * `A^2 - 4` is quadratic nonresidue. //! * The group order of the curve and its quadratic twist has a large //! prime factor. //!