diff --git a/x/axelarnet/module.go b/x/axelarnet/module.go
index 8812fc9ea..0690fb8ea 100644
--- a/x/axelarnet/module.go
+++ b/x/axelarnet/module.go
@@ -212,7 +212,7 @@ func NewAxelarnetIBCModule(
 }
 
 // OnRecvPacket implements the IBCModule interface. A successful acknowledgement
-// is returned if the packet data is succesfully decoded and the receive application
+// is returned if the packet data is successfully decoded and the receive application
 // logic returns without error.
 func (m AxelarnetIBCModule) OnRecvPacket(
 	ctx sdk.Context,
diff --git a/x/nexus/keeper/general_message_test.go b/x/nexus/keeper/general_message_test.go
index 75d4d0447..3a180bd3b 100644
--- a/x/nexus/keeper/general_message_test.go
+++ b/x/nexus/keeper/general_message_test.go
@@ -254,7 +254,7 @@ func TestRouteMessage(t *testing.T) {
 					assert.ErrorContains(t, keeper.RouteMessage(ctx, msg.ID), "not an hex address")
 				}),
 
-			When("the destination chain does't support the asset", func() {
+			When("the destination chain doesn't support the asset", func() {
 				msg.Recipient = exported.CrossChainAddress{
 					Chain:   evm.Ethereum,
 					Address: evmtestutils.RandomAddress().Hex(),
@@ -327,7 +327,7 @@ func TestRouteMessage(t *testing.T) {
 					assert.ErrorContains(t, keeper.RouteMessage(ctx, msg.ID), "not an hex address")
 				}),
 
-			When("the sender chain does't support the asset", func() {
+			When("the sender chain doesn't support the asset", func() {
 				msg.Sender = exported.CrossChainAddress{
 					Chain:   evm.Ethereum,
 					Address: evmtestutils.RandomAddress().Hex(),
diff --git a/x/snapshot/keeper/keeper.go b/x/snapshot/keeper/keeper.go
index 17565d852..5e3d3e44b 100644
--- a/x/snapshot/keeper/keeper.go
+++ b/x/snapshot/keeper/keeper.go
@@ -165,7 +165,7 @@ func (k Keeper) GetOperator(ctx sdk.Context, proxy sdk.AccAddress) sdk.ValAddres
 }
 
 // GetProxy returns the proxy address for a given operator address. Returns nil if not set.
-// The bool value denotes wether or not the proxy is active and to be included in the next snapshot
+// The bool value denotes whether or not the proxy is active and to be included in the next snapshot
 func (k Keeper) GetProxy(ctx sdk.Context, operator sdk.ValAddress) (addr sdk.AccAddress, active bool) {
 	if proxiedValidator, ok := k.getProxiedValidator(ctx, operator); ok {
 		return proxiedValidator.Proxy, proxiedValidator.Active