From 535214df670abbfa9353a0b64b078f600d2c19b8 Mon Sep 17 00:00:00 2001 From: David Irvine Date: Sun, 29 Dec 2024 11:46:34 +0000 Subject: [PATCH] docs: fix relative links in API documentation --- docs/api/nodejs/README.md | 6 +++--- docs/api/python/README.md | 6 +++--- docs/api/rust/README.md | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/api/nodejs/README.md b/docs/api/nodejs/README.md index 8ed38a067b..bbff883a75 100644 --- a/docs/api/nodejs/README.md +++ b/docs/api/nodejs/README.md @@ -411,8 +411,8 @@ interface Client { ## Further Reading -- [Web Development Guide](/guides/web_development) -- [Quantum Security Guide](/guides/quantum_security) -- [Error Handling Guide](/guides/error_handling) +- [Web Development Guide](../../guides/web_development.md) +- [Quantum Security Guide](../../guides/quantum_security.md) +- [Error Handling Guide](../../guides/error_handling.md) - [API Reference](https://autonomi.dev/api) - [Examples Repository](https://github.com/autonomi/examples) diff --git a/docs/api/python/README.md b/docs/api/python/README.md index 1722398ff7..b8b9256a14 100644 --- a/docs/api/python/README.md +++ b/docs/api/python/README.md @@ -372,8 +372,8 @@ def update_pointer(self, address: Address, target: Address) -> None: ... ## Further Reading -- [Data Science Guide](/guides/data_science) -- [Quantum Security Guide](/guides/quantum_security) -- [Error Handling Guide](/guides/error_handling) +- [Data Science Guide](../../guides/data_science.md) +- [Quantum Security Guide](../../guides/quantum_security.md) +- [Error Handling Guide](../../guides/error_handling.md) - [API Reference](https://autonomi.readthedocs.io) - [Examples Repository](https://github.com/autonomi/examples) diff --git a/docs/api/rust/README.md b/docs/api/rust/README.md index 5d61d5be14..efe4084575 100644 --- a/docs/api/rust/README.md +++ b/docs/api/rust/README.md @@ -328,8 +328,8 @@ client.update_pointers_batch(updates).await?; ## Further Reading -- [Rust Performance Guide](/guides/rust_performance) -- [Quantum Security Guide](/guides/quantum_security) -- [Error Handling Guide](/guides/error_handling) +- [Rust Performance Guide](../../guides/rust_performance.md) +- [Quantum Security Guide](../../guides/quantum_security.md) +- [Error Handling Guide](../../guides/error_handling.md) - [API Reference](https://docs.rs/autonomi) - [Examples Repository](https://github.com/autonomi/examples)