diff --git a/src/base/rkyv_wrappers.rs b/src/base/rkyv_wrappers.rs index ce178674..f50ae73e 100644 --- a/src/base/rkyv_wrappers.rs +++ b/src/base/rkyv_wrappers.rs @@ -1,6 +1,6 @@ //! Wrapper that allows changing the generic type of a PhantomData //! -//! Copied from https://github.com/rkyv/rkyv_contrib (MIT-Apache2 licences) which isn’t published yet. +//! Copied from (MIT-Apache2 licences) which isn’t published yet. use rkyv::{ with::{ArchiveWith, DeserializeWith, SerializeWith}, @@ -8,7 +8,7 @@ use rkyv::{ }; use std::marker::PhantomData; -/// A wrapper that allows for changing the generic type of a PhantomData. +/// A wrapper that allows for changing the generic type of a `PhantomData`. pub struct CustomPhantom { _data: PhantomData<*const NT>, }