From 30e253dd8c0c308fda3f176f043f79446a4400e4 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 09:43:25 +0100 Subject: [PATCH] chore: fix spelling errors (backport #1579) (#1580) chore: fix spelling errors (#1579) chore: spelling errors fixes Co-authored-by: github-merge-queue (cherry picked from commit eed76270de6e1b455cf938dfe6bf943815bc7b4c) Co-authored-by: Cosmos SDK <113218068+github-prbot@users.noreply.github.com> Co-authored-by: Philip Offtermatt <57488781+p-offtermatt@users.noreply.github.com> --- 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 }