From d9a3f67287f3ace3a01734d3fe9e33ce71f19c09 Mon Sep 17 00:00:00 2001 From: Dan Svoboda Date: Mon, 15 Nov 2021 14:04:53 -0500 Subject: [PATCH] Fix broken relative markdown link in guide This link needs to point up one dir to the location of class.md --- guide/src/conversions/traits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/src/conversions/traits.md b/guide/src/conversions/traits.md index a102d47fb04..d0089ef135d 100644 --- a/guide/src/conversions/traits.md +++ b/guide/src/conversions/traits.md @@ -17,7 +17,7 @@ variety of Rust types, which you can check out in the implementor list of [`FromPyObject`]. [`FromPyObject`] is also implemented for your own Rust types wrapped as Python -objects (see [the chapter about classes](class.md)). There, in order to both be +objects (see [the chapter about classes](../class.md)). There, in order to both be able to operate on mutable references *and* satisfy Rust's rules of non-aliasing mutable references, you have to extract the PyO3 reference wrappers [`PyRef`] and [`PyRefMut`]. They work like the reference wrappers of