Skip to content

Commit a8ab7d7

Browse files
committed
Update docs
1 parent 82ffae5 commit a8ab7d7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

generic-ec/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//! Generic purpose elliptic curve cryptography
2+
13
#![cfg_attr(not(feature = "std"), no_std)]
24

35
#[cfg(feature = "alloc")]

generic-ec/src/point/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ impl<E: Curve> Point<E> {
4848
self.ct_is_zero().into()
4949
}
5050

51-
/// Indicates whether it's [identity point](Self::zero) (constant time)
51+
/// Indicates whether it's [identity point](Self::zero) (in constant time)
5252
///
5353
/// Same as [`.is_zero()`](Self::is_zero) but performs constant-time comparison.
5454
pub fn ct_is_zero(&self) -> Choice {

0 commit comments

Comments
 (0)