chore: polishing docs and comments: typo fixes for clarity (#25081)

Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
dmytroheknt
2025-08-04 15:35:53 +00:00
committed by GitHub
co-authored by Alex | Interchain Labs
parent 2ff43141b2
commit ec4ee1cb19
11 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ func (a *App) RegisterModules(modules ...module.AppModule) error {
// RegisterStores registers the provided store keys.
// This method should only be used for registering extra stores
// wiich is necessary for modules that not registered using the app config.
// which is necessary for modules that not registered using the app config.
// To be used in combination of RegisterModules.
func (a *App) RegisterStores(keys ...storetypes.StoreKey) error {
a.storeKeys = append(a.storeKeys, keys...)
+1 -1
View File
@@ -32,7 +32,7 @@ func NewEventManager(ctx context.Context) event.Manager {
return &Events{sdkCtx.EventManager()}
}
// Emit emits an typed event that is defined in the protobuf file.
// Emit emits a typed event that is defined in the protobuf file.
// In the future these events will be added to consensus.
func (e Events) Emit(_ context.Context, event protoiface.MessageV1) error {
return e.EmitTypedEvent(event)