From bfe7ee88258ee6cd0a5077e59cf78492ccf1a205 Mon Sep 17 00:00:00 2001 From: Cian Hatton Date: Mon, 12 Dec 2022 13:22:53 +0000 Subject: [PATCH] Fixing markdown link (#2924) --- docs/apps/interchain-accounts/legacy/integration.md | 4 ++-- docs/ibc/light-clients/solomachine/solomachine.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/apps/interchain-accounts/legacy/integration.md b/docs/apps/interchain-accounts/legacy/integration.md index 4a2f99fd692..55613a29739 100644 --- a/docs/apps/interchain-accounts/legacy/integration.md +++ b/docs/apps/interchain-accounts/legacy/integration.md @@ -157,7 +157,7 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino As described above, the Interchain Accounts application module is structured to support the ability of exclusively enabling controller or host functionality. This can be achieved by simply omitting either controller or host `Keeper` from the Interchain Accounts `NewAppModule` constructor function, and mounting only the desired submodule via the `IBCRouter`. -Alternatively, submodules can be enabled and disabled dynamically using [on-chain parameters](./parameters.md). +Alternatively, submodules can be enabled and disabled dynamically using [on-chain parameters](../parameters.md). The following snippets show basic examples of statically disabling submodules using `app.go`. @@ -192,4 +192,4 @@ icaControllerStack := icacontroller.NewIBCMiddleware(icaAuthIBCModule, app.ICACo ibcRouter. AddRoute(icacontrollertypes.SubModuleName, icaControllerStack). AddRoute(icaauthtypes.ModuleName, icaControllerStack) // Note, the authentication module is routed to the top level of the middleware stack -``` \ No newline at end of file +``` diff --git a/docs/ibc/light-clients/solomachine/solomachine.md b/docs/ibc/light-clients/solomachine/solomachine.md index 0879f1bd2be..6eff631c709 100644 --- a/docs/ibc/light-clients/solomachine/solomachine.md +++ b/docs/ibc/light-clients/solomachine/solomachine.md @@ -20,6 +20,6 @@ diversifier, and timestamp. ## Contents -1. **[Concepts](01_concepts.md)** -2. **[State](02_state.md)** -3. **[State Transitions](03_state_transitions.md)** +1. **[Concepts](./concepts.md)** +2. **[State](./state.md)** +3. **[State Transitions](./state_transitions.md)**