From 96f7035aa0a9b207c7d2f9c39a824604870e465e Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Sun, 6 Jul 2025 14:12:10 +0300 Subject: [PATCH] Update lib.rs --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index f9eee3c..6940b84 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -86,7 +86,7 @@ pub trait Field: /// /// # Security /// - /// This method provides **no** constant-time guarantees. Implementors of the + /// This method provides **no** constant-time guarantees. Implementers of the /// `Field` trait **may** optimise this method using non-constant-time logic. fn is_zero_vartime(&self) -> bool { self.is_zero().into() @@ -278,7 +278,7 @@ pub trait PrimeField: Field + From { /// /// # Security /// - /// This method provides **no** constant-time guarantees. Implementors of the + /// This method provides **no** constant-time guarantees. Implementers of the /// `PrimeField` trait **may** optimise this method using non-constant-time logic. fn from_repr_vartime(repr: Self::Repr) -> Option { Self::from_repr(repr).into()