Skip to content

Commit

Permalink
Fix broken relative markdown link in guide
Browse files Browse the repository at this point in the history
This link needs to point up one dir to the location of class.md
  • Loading branch information
dansvo authored Nov 15, 2021
1 parent e790d55 commit d9a3f67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion guide/src/conversions/traits.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d9a3f67

Please sign in to comment.