From 4ffd51d4e56a698bfa16158ad2340c79cfbf348b Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Thu, 8 Feb 2024 09:28:15 -0700 Subject: [PATCH] Update src/lib.rs Co-authored-by: Aaron Feickert <66188213+AaronFeickert@users.noreply.github.com> --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 6b0042d..1aba339 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -812,7 +812,7 @@ impl CtOption { /// This implementation doesn't intend to be constant-time nor try to protect the /// leakage of the `T` since the `Option` will do it anyways. /// - /// It's equivalent to the corresponding `From` impl, however this version is is + /// It's equivalent to the corresponding `From` impl, however this version is /// friendlier for type inference. pub fn into_option(self) -> Option { self.into()