diff --git a/types/module/configurator.go b/types/module/configurator.go index 2423e8d98d4f..f396b289b1ac 100644 --- a/types/module/configurator.go +++ b/types/module/configurator.go @@ -127,7 +127,7 @@ func (c *configurator) RegisterMigration(moduleName string, fromVersion uint64, } // Register implements the Configurator.Register method -// It permis to register modules migrations that have migrated to serverv2 but still be compatible with baseapp. +// It allows to register modules migrations that have migrated to server/v2 but still be compatible with baseapp. func (c *configurator) Register(moduleName string, fromVersion uint64, handler func(context.Context) error) error { return c.RegisterMigration(moduleName, fromVersion, func(sdkCtx sdk.Context) error { return handler(sdkCtx)