From ecd33c9204f9cf1ba9cd8529c80f4aec3f34d960 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 <github-merge-queue@users.noreply.github.com>
(cherry picked from commit eed76270de6e1b455cf938dfe6bf943815bc7b4c)
---
 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
 }