Skip to content

Commit 4fcf875

Browse files
authored
Merge pull request #2356 from CosmWasm/mergify/bp/release/2.1/pr-2355
Fix spelling of "generaor" to make release/2.2 CI green again (backport #2355)
2 parents 2c678fa + 8b05066 commit 4fcf875

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/crypto/src/bls12_381/points.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use crate::{errors::InvalidPoint, CryptoError};
1717
pub struct G1(pub(crate) G1Affine);
1818

1919
impl G1 {
20-
/// Creates the generaor in G1
20+
/// Creates the generator in G1
2121
#[inline]
2222
pub fn generator() -> Self {
2323
Self(G1Affine::generator())
@@ -73,7 +73,7 @@ impl<'a> core::iter::Sum<&'a G1> for G1 {
7373
pub struct G2(pub(crate) G2Affine);
7474

7575
impl G2 {
76-
/// Creates the generaor in G2
76+
/// Creates the generator in G2
7777
#[inline]
7878
pub fn generator() -> Self {
7979
Self(G2Affine::generator())

0 commit comments

Comments
 (0)