From 6583c160eb5550e40a64220a33e1c7b4cfbb785f Mon Sep 17 00:00:00 2001 From: Heiko Schaefer Date: Sat, 28 Aug 2021 11:58:42 +0200 Subject: [PATCH] Edit comment --- openpgp-card/src/algorithm.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/openpgp-card/src/algorithm.rs b/openpgp-card/src/algorithm.rs index 6a35fd3..371a825 100644 --- a/openpgp-card/src/algorithm.rs +++ b/openpgp-card/src/algorithm.rs @@ -136,11 +136,9 @@ impl AlgoSimple { /// Algorithm Information /// -/// Modern cards provide a list of supported algorithms for each key type. -/// The list specifies which "Algorithm Attributes" can be set for key -/// generation or key import. -/// -/// (This feature was introduced in OpenPGP card v3.4) +/// Modern cards (since OpenPGP card v3.4) provide a list of supported +/// algorithms for each key type. This list specifies which "Algorithm +/// Attributes" can be set for key generation or key import. #[derive(Debug, Clone, Eq, PartialEq)] pub struct AlgoInfo(pub(crate) Vec<(KeyType, Algo)>);