docs: Remove explicit auto deref from PrivateCookieJar example (#2028)

Co-authored-by: David Pedersen <[email protected]>
This commit is contained in:
Asger Hautop Drewsen
2023-07-17 09:38:08 +02:00
committed by David Pedersen
co-authored by David Pedersen
parent 87b87f317d
commit 078c7ca65b
+1 -1
View File
@@ -88,7 +88,7 @@ use std::{convert::Infallible, fmt, marker::PhantomData};
/// type Target = InnerState; /// type Target = InnerState;
/// ///
/// fn deref(&self) -> &Self::Target { /// fn deref(&self) -> &Self::Target {
/// &*self.0 /// &self.0
/// } /// }
/// } /// }
/// ///