We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c678fa commit 8b05066Copy full SHA for 8b05066
packages/crypto/src/bls12_381/points.rs
@@ -17,7 +17,7 @@ use crate::{errors::InvalidPoint, CryptoError};
17
pub struct G1(pub(crate) G1Affine);
18
19
impl G1 {
20
- /// Creates the generaor in G1
+ /// Creates the generator in G1
21
#[inline]
22
pub fn generator() -> Self {
23
Self(G1Affine::generator())
@@ -73,7 +73,7 @@ impl<'a> core::iter::Sum<&'a G1> for G1 {
73
pub struct G2(pub(crate) G2Affine);
74
75
impl G2 {
76
- /// Creates the generaor in G2
+ /// Creates the generator in G2
77
78
79
Self(G2Affine::generator())
0 commit comments