From 4900feeeebf97ccc713c96bd2c1f895b4cb16045 Mon Sep 17 00:00:00 2001 From: Devon Hudson Date: Tue, 3 Sep 2024 12:42:10 -0600 Subject: [PATCH] Remove unnecessary docs --- src/pk_encryption.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pk_encryption.rs b/src/pk_encryption.rs index a25d57c2..53519d5d 100644 --- a/src/pk_encryption.rs +++ b/src/pk_encryption.rs @@ -236,7 +236,6 @@ impl Default for PkDecryption { } } -/// Attempt to decode a [`PkDecryption`] object from a [`PkDecryptionPickle`] object. impl TryFrom for PkDecryption { type Error = crate::LibolmPickleError; @@ -257,7 +256,6 @@ struct PkDecryptionPickle { } impl From<&PkDecryption> for PkDecryptionPickle { - /// Create a new [`PkDecryptionPickle`] object from a [`PkDecryption`] object. fn from(decrypt: &PkDecryption) -> Self { Self { version: PICKLE_VERSION,