From 2e664ad13330b1f5f46aee0b95241ed7129f97d7 Mon Sep 17 00:00:00 2001 From: Rob N Date: Fri, 6 Sep 2024 10:23:00 -1000 Subject: [PATCH] doc: update links --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e9408e2..9656c86 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,4 @@ client/server relationship. Esplora and Electrum offer _proactive_ APIs, in that In the case of running a node as a background process, the developer experience is far more _reactive_, in that the node may emit any number of events, and the application may respond to them. BDK-Kyoto curates these events into structures that are easily handled by BDK APIs, making integration of compact block filters easily understood. -Developers are free to use `bdk_wallet`, or only primatives found in `bdk_core` and `bdk_chain`. +Developers are free to use [`bdk_wallet`](https://docs.rs/bdk_wallet/latest/bdk_wallet/), or only primatives found in [`bdk_core`](https://docs.rs/bdk_core/latest/bdk_core/) and [`bdk_chain`](https://docs.rs/bdk_chain/latest/bdk_chain/). diff --git a/src/lib.rs b/src/lib.rs index dfca552..a64be11 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! and the application may respond to them. //! //! BDK-Kyoto curates these events into structures that are easily handled by BDK APIs, making integration of compact block filters easily understood. -//! Developers are free to use `bdk_wallet`, or only primatives found in `bdk_core` and `bdk_chain`. +//! Developers are free to use [`bdk_wallet`], or only primatives found in [`bdk_core`](https://docs.rs/bdk_core/latest/bdk_core/) and [`bdk_chain`]. //! //! ## Examples //!