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

Co-authored-by: David Pedersen <david.pdrsn@gmail.com>
This commit is contained in:
Asger Hautop Drewsen 2023-06-22 23:50:45 +02:00 committed by GitHub
parent 3c514ab0b4
commit 40da647620
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -91,7 +91,7 @@ use std::{convert::Infallible, fmt, marker::PhantomData};
/// type Target = InnerState;
///
/// fn deref(&self) -> &Self::Target {
/// &*self.0
/// &self.0
/// }
/// }
///