Skip to content

Commit 2e23bfb

Browse files
authored
Merge pull request #2327 from CosmWasm/co/fix-typos
Fix typos
2 parents 6e98a68 + a529f63 commit 2e23bfb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/crypto/src/bls12_381/points.rs

+2-2
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())

packages/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ std = []
2020
# given Ethereum 1.0, 2.0, Substrate, and other major projects use Tries
2121
# we keep this optional, to allow possible future integration (or different Cosmos Backends)
2222
iterator = []
23-
# staking exposes bindings to a required staking moudle in the runtime, via new
23+
# staking exposes bindings to a required staking module in the runtime, via new
2424
# CosmosMsg types, and new QueryRequest types. This should only be enabled on contracts
2525
# that require these types, so other contracts can be used on systems with eg. PoA consensus
2626
staking = []

0 commit comments

Comments
 (0)