From 77e3e99c6f9bb2da0c1bfeea2e54825182cabbb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?colin=20axn=C3=A9r?= <25233464+colin-axner@users.noreply.github.com> Date: Wed, 14 Dec 2022 15:33:11 +0100 Subject: [PATCH] chore: use diffs to make registration more clear (#2927) --- docs/ibc/integration.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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