From 49fab4a7103720c25246e9d4fc64c9059cebc25b Mon Sep 17 00:00:00 2001 From: Leon Hudak <33522493+leohhhn@users.noreply.github.com> Date: Tue, 25 Jun 2024 13:09:52 +0200 Subject: [PATCH] fix(docs): broken links (#2431) ## Description This PR fixes a few broken links in the docs, cherry-picked from #2416.
Contributors' checklist... - [x] Added new tests, or not needed, or not feasible - [x] Provided an example (e.g. screenshot) to aid review or the PR is self-explanatory - [x] Updated the official documentation or not needed - [x] No breaking changes were made, or a `BREAKING CHANGE: xxx` message was included in the description - [x] Added references to related issues and PRs - [x] Provided any useful hints for running manual tests - [x] Added new benchmarks to [generated graphs](https://gnoland.github.io/benchmarks), if any. More info [here](https://github.com/gnolang/gno/blob/master/.benchmarks/README.md).
--- docs/how-to-guides/connecting-from-go.md | 9 +++++---- docs/reference/gnoclient/gnoclient.md | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/how-to-guides/connecting-from-go.md b/docs/how-to-guides/connecting-from-go.md index 29067fe0ca1..2d8ebbc7f19 100644 --- a/docs/how-to-guides/connecting-from-go.md +++ b/docs/how-to-guides/connecting-from-go.md @@ -101,8 +101,9 @@ func main() { A few things to note: - You can view keys in your local keybase by running `gnokey list`. - You can get the password from a user input using the IO package. -- `Signer` can also be initialized in-memory from a BIP39 mnemonic, using the -[`SignerFromBip39`](../reference/gnoclient/signer.md#func-signerfrombip39) function. +- `Signer` can also be initialized in-memory from a BIP39 mnemonic, using the +[`SignerFromBip39`](https://gnolang.github.io/gno/github.com/gnolang/gno@v0.0.0/gno.land/pkg/gnoclient.html#SignerFromBip39) +function. ## Initialize the RPC connection & Client @@ -115,8 +116,8 @@ if err != nil { } ``` -A list of Gno.land network endpoints & chain IDs can be found in the [Gno RPC -endpoints](../reference/rpc-endpoints.md#network-configurations) page. +A list of Gno.land network endpoints & chain IDs can be found in the +[Gno RPC endpoints](../reference/network-config.md) page. With this, we can initialize the `gnoclient.Client` struct: diff --git a/docs/reference/gnoclient/gnoclient.md b/docs/reference/gnoclient/gnoclient.md index 5b9a9f5d43e..588cc528dae 100644 --- a/docs/reference/gnoclient/gnoclient.md +++ b/docs/reference/gnoclient/gnoclient.md @@ -30,5 +30,5 @@ To see the full reference documentation for the `gnoclient` package, we recommen visiting the [`gnoclient godoc page`](https://gnolang.github.io/gno/github.com/gnolang/gno@v0.0.0/gno.land/pkg/gnoclient.html). For a tutorial on how to use the `gnoclient` package, check out -["How to connect a Go app to Gno.land"](../../how-to-guides/connecting-from-go.md.) +["How to connect a Go app to Gno.land"](../../how-to-guides/connecting-from-go.md)