diff --git a/docs/ibc/integration.md b/docs/ibc/integration.md index 76fcabf4e5e..904fcdb303a 100644 --- a/docs/ibc/integration.md +++ b/docs/ibc/integration.md @@ -37,11 +37,11 @@ All light clients must be registered with `module.BasicManager` in a chain's app The following code example shows how to register the existing `ibctm.AppModuleBasic{}` light client implementation. -```go +```diff import ( ... - ibctm "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint" ++ ibctm "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint" ... ) @@ -55,7 +55,7 @@ var ( transfer.AppModuleBasic{}, // i.e ibc-transfer module // register light clients on IBC - ibctm.AppModuleBasic{}, ++ ibctm.AppModuleBasic{}, ) // module account permissions diff --git a/modules/apps/transfer/keeper/msg_server.go b/modules/apps/transfer/keeper/msg_server.go index 564647b2148..d6794c3bf3e 100644 --- a/modules/apps/transfer/keeper/msg_server.go +++ b/modules/apps/transfer/keeper/msg_server.go @@ -11,7 +11,7 @@ import ( var _ types.MsgServer = Keeper{} -// Transfer defines a rpc handler method for MsgTransfer. +// Transfer defines an rpc handler method for MsgTransfer. func (k Keeper) Transfer(goCtx context.Context, msg *types.MsgTransfer) (*types.MsgTransferResponse, error) { ctx := sdk.UnwrapSDKContext(goCtx)