From 9a6b3a7550e85ee453adde079379b2ce6b99e96b Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Sat, 24 May 2025 14:01:15 +0300 Subject: [PATCH 1/3] Update registry.rs --- fendermint/testing/contract-test/src/ipc/registry.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fendermint/testing/contract-test/src/ipc/registry.rs b/fendermint/testing/contract-test/src/ipc/registry.rs index ffa54b000..9fedd0281 100644 --- a/fendermint/testing/contract-test/src/ipc/registry.rs +++ b/fendermint/testing/contract-test/src/ipc/registry.rs @@ -42,7 +42,7 @@ impl RegistryCaller { } impl RegistryCaller { - /// Create a new instance of the built-in subnet implemetation. + /// Create a new instance of the built-in subnet implementation. /// /// Returns the address of the deployed contract. pub fn new_subnet( From e4d367017f91a70592b59cb3a251964181b3eaa3 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Sat, 24 May 2025 14:01:50 +0300 Subject: [PATCH 2/3] Update lib.rs --- fendermint/crypto/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fendermint/crypto/src/lib.rs b/fendermint/crypto/src/lib.rs index c6397727a..f742dcc85 100644 --- a/fendermint/crypto/src/lib.rs +++ b/fendermint/crypto/src/lib.rs @@ -10,7 +10,7 @@ use zeroize::{Zeroize, ZeroizeOnDrop, Zeroizing}; pub use libsecp256k1::{PublicKey, RecoveryId, Signature}; /// A [`GeneralPurpose`] engine using the [`alphabet::STANDARD`] base64 alphabet -/// padding bytes when writing but requireing no padding when reading. +/// padding bytes when writing but requiring no padding when reading. const B64_ENGINE: GeneralPurpose = GeneralPurpose::new( &alphabet::STANDARD, GeneralPurposeConfig::new() From 02a519c3878987cca04fb7ebc5dc747497e58a28 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Sat, 24 May 2025 14:02:29 +0300 Subject: [PATCH 3/3] Update kvstore.rs --- fendermint/rocksdb/src/kvstore.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fendermint/rocksdb/src/kvstore.rs b/fendermint/rocksdb/src/kvstore.rs index 254d51f4c..db83c61dc 100644 --- a/fendermint/rocksdb/src/kvstore.rs +++ b/fendermint/rocksdb/src/kvstore.rs @@ -322,7 +322,7 @@ mod tests { db } - // Not using the `#[quickcheck]` macro so I can run fewer tests becasue they are slow. + // Not using the `#[quickcheck]` macro so I can run fewer tests because they are slow. fn run_quickcheck(f: F) { QuickCheck::new().tests(TEST_COUNT).quickcheck(f) }