From 091987b31af601c83a4fb2ab937f2fec03b7c85c Mon Sep 17 00:00:00 2001 From: Cosmos SDK <113218068+github-prbot@users.noreply.github.com> Date: Mon, 22 Jan 2024 09:35:21 +0100 Subject: [PATCH] chore: fix spelling errors (#1579) chore: spelling errors fixes Co-authored-by: github-merge-queue --- UPGRADING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UPGRADING.md b/UPGRADING.md index 851f31fe78..1267d3ac66 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -19,7 +19,7 @@ Upgrading a consumer from `v3.2.0` to `v4.0.0` will not require state migration, In addition, the following migration needs to be added to the upgrade handler of the consumer chain: ```golang func migrateICSOutstandingDowntime(ctx sdk.Context, keepers *upgrades.UpgradeKeepers) error { - ctx.Logger().Info("Migrating ICS oustanding downtime...") + ctx.Logger().Info("Migrating ICS outstanding downtime...") downtimes := keepers.ConsumerKeeper.GetAllOutstandingDowntimes(ctx) for _, od := range downtimes { @@ -30,7 +30,7 @@ func migrateICSOutstandingDowntime(ctx sdk.Context, keepers *upgrades.UpgradeKee keepers.ConsumerKeeper.DeleteOutstandingDowntime(ctx, consAddr) } - ctx.Logger().Info("Finished ICS oustanding downtime") + ctx.Logger().Info("Finished ICS outstanding downtime") return nil }