Fix doc comments

This fixes a clippy warning from a new lint introduced in 1.70.0 and a
rustdoc warning.
This commit is contained in:
Robin Krahl
2023-11-13 11:22:55 +01:00
parent b33eb5314a
commit b8f5ea5ea3
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ pub use types::{RsaImportFormat, RsaPublicParts};
mod crypto_traits;
pub use crypto_traits::{Rsa2048Pkcs1v15, Rsa3072Pkcs1v15, Rsa4096Pkcs1v15};
/// Trussed [`Backend`](trussed::backend::Backend) implementation adding support for RSA
/// Trussed [`Backend`][] implementation adding support for RSA
///
/// This implementation is done in software and requieres an allocator
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Debug, Default, Hash)]
+3 -2
View File
@@ -3,8 +3,9 @@
#![cfg(feature = "virt")]
///! Test that the core backend is still reachable.
///! Tests imported from the trussed repo
//! Test that the core backend is still reachable.
//! Tests imported from the trussed repo
use trussed::{client::CertificateClient as _, syscall, try_syscall, types::Location::*};
use trussed_rsa_alloc::virt;