Skip to content

Commit

Permalink
chore: use diffs to make registration more clear (cosmos#2927)
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-axner authored Dec 14, 2022
1 parent 57da75a commit 77e3e99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/ibc/integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
...
)

Expand All @@ -55,7 +55,7 @@ var (
transfer.AppModuleBasic{}, // i.e ibc-transfer module

// register light clients on IBC
ibctm.AppModuleBasic{},
+ ibctm.AppModuleBasic{},
)

// module account permissions
Expand Down

0 comments on commit 77e3e99

Please sign in to comment.