fix: correct various typos across codebase (#25106)

This commit is contained in:
James Niken
2025-08-06 18:23:31 +00:00
committed by GitHub
parent 56775c81d0
commit 87b5e6c44b
16 changed files with 19 additions and 23 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ type (
// Codec defines a functionality for serializing other objects.
// Users can define a custom Protobuf-based serialization.
// Note, Amino can still be used without any dependency on Protobuf.
// SDK provides to Codec implementations:
// SDK provides two Codec implementations:
//
// 1. AminoCodec: Provides full Amino serialization compatibility.
// 2. ProtoCodec: Provides full Protobuf serialization compatibility.
+1 -1
View File
@@ -28,7 +28,7 @@ var eom = &errOnMarshal{}
// Ensure that returning an error doesn't suddenly allocate and waste bytes.
// See https://github.com/cosmos/cosmos-sdk/issues/8537
func TestNewAnyWithCustomTypeURLWithErrorNoAllocation(t *testing.T) {
// This tests continues to fail inconsistently.
// This test continues to fail inconsistently.
//
// Example: https://github.com/cosmos/cosmos-sdk/pull/9246/checks?check_run_id=2643313958#step:6:118
// Ref: https://github.com/cosmos/cosmos-sdk/issues/9010