From 8cf86ea6355e4b7625ee8bc7bb0bda28d9e76bee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Colin=20Axn=C3=A9r?= <25233464+colin-axner@users.noreply.github.com> Date: Tue, 29 Nov 2022 13:23:33 +0100 Subject: [PATCH] chore: fix indentation --- docs/migrations/v6-to-v7.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/migrations/v6-to-v7.md b/docs/migrations/v6-to-v7.md index 4992176b2f9..74bcc3210df 100644 --- a/docs/migrations/v6-to-v7.md +++ b/docs/migrations/v6-to-v7.md @@ -23,16 +23,16 @@ To register the solo machine client, modify the `app.go` file to include the sol ```diff import ( - ... -+ solomachine "github.com/cosmos/ibc-go/v6/modules/light-clients/06-solomachine" - ... + ... ++ solomachine "github.com/cosmos/ibc-go/v6/modules/light-clients/06-solomachine" + ... ) ... ModuleBasics = module.NewBasicManager( - ... - ibc.AppModuleBasic{}, -+ solomachine.AppModuleBasic{}, - ... + ... + ibc.AppModuleBasic{}, ++ solomachine.AppModuleBasic{}, + ... ) ```