From 7d86244df1d672a807fbdf618183688a093796bb Mon Sep 17 00:00:00 2001 From: osrm <90407222+osrm@users.noreply.github.com> Date: Fri, 27 Dec 2024 03:53:41 +0900 Subject: [PATCH] doc: fix invalid link 03-client-state.md (#7794) * fix invalid link 03-client-state.md "abci.go"'s link is invalid. "https://github.com/cosmos/ibc-go/blob/09-localhost/modules/core/02-client/abci.go#L12" -> "https://github.com/cosmos/ibc-go/blob/main/modules/core/02-client/abci.go#L12" * fix invalid link 03-client-state.md "https://github.com/cosmos/ibc-go/blob/09-localhost/modules/core/02-client/abci.go#L12" -> "https://github.com/cosmos/ibc-go/blob/main/modules/core/02-client/abci.go#L28" * fix invalid link 03-client-state.md "https://github.com/cosmos/ibc-go/blob/09-localhost/modules/core/02-client/abci.go#L12" -> "https://github.com/cosmos/ibc-go/blob/v8.5.0/modules/core/02-client/abci.go#L12" --- .../03-light-clients/02-localhost/03-client-state.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/versioned_docs/version-v8.5.x/03-light-clients/02-localhost/03-client-state.md b/docs/versioned_docs/version-v8.5.x/03-light-clients/02-localhost/03-client-state.md index 19e03b62aa9..bb2cbe2e248 100644 --- a/docs/versioned_docs/version-v8.5.x/03-light-clients/02-localhost/03-client-state.md +++ b/docs/versioned_docs/version-v8.5.x/03-light-clients/02-localhost/03-client-state.md @@ -33,7 +33,7 @@ It is possible to disable the localhost client by removing the `09-localhost` en The latest height is updated periodically through the ABCI [`BeginBlock`](https://docs.cosmos.network/v0.47/building-modules/beginblock-endblock) interface of the 02-client submodule in core IBC. -[See `BeginBlocker` in abci.go.](https://github.com/cosmos/ibc-go/blob/09-localhost/modules/core/02-client/abci.go#L12) +[See `BeginBlocker` in abci.go.](https://github.com/cosmos/ibc-go/blob/v8.5.0/modules/core/02-client/abci.go#L12) ```go func BeginBlocker(ctx sdk.Context, k keeper.Keeper) {