From a5511b8f8ae6b7b74d3ed7bb907e39d72a451a11 Mon Sep 17 00:00:00 2001 From: James Hilton-Balfe <50501825+Gobot1234@users.noreply.github.com> Date: Wed, 22 Dec 2021 16:51:03 +0000 Subject: [PATCH] Fix markdown link (#2071) --- guide/src/features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/src/features.md b/guide/src/features.md index 5af4f3ec..1a29885c 100644 --- a/guide/src/features.md +++ b/guide/src/features.md @@ -83,7 +83,7 @@ These features enable conversions between Python types and types from other Rust ### `anyhow` -Adds a dependency on [anyhow](https://docs.rs/anyhow). Enables a conversion from [anyhow](https://docs.rs/anyhow)’s [`Error`]https://docs.rs/anyhow/latest/anyhow/struct.Error.html) type to [`PyErr`](https://docs.rs/pyo3/latest/pyo3/struct.PyErr.html), for easy error handling. +Adds a dependency on [anyhow](https://docs.rs/anyhow). Enables a conversion from [anyhow](https://docs.rs/anyhow)’s [`Error`](https://docs.rs/anyhow/latest/anyhow/struct.Error.html) type to [`PyErr`](https://docs.rs/pyo3/latest/pyo3/struct.PyErr.html), for easy error handling. ### `eyre`