diff --git a/perlmod/src/magic.rs b/perlmod/src/magic.rs index 3461b21..fc4dfeb 100644 --- a/perlmod/src/magic.rs +++ b/perlmod/src/magic.rs @@ -3,7 +3,7 @@ //! This is a safer alternative to directly blessing raw pointer values as it is more difficult to //! get the perl side of this wrong. //! -//! For instance, one major downside of using `[Value::bless_box]` is that it is possible to simply +//! For instance, one major downside of using [`Value::bless_box`] is that it is possible to simply //! bless invalid values into the same class, or create clones via perl's `Storable::dclone` or //! `Clone::clone`, which can easily cause a double-free corruption. //!