From 60e10c56c4d0fe8cf3d49d21ffabce8667e7c3c2 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Sat, 10 Jul 2021 15:45:09 +0800 Subject: [PATCH] chore: fix typo --- src/pgpcardlist.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pgpcardlist.rs b/src/pgpcardlist.rs index a7da025..7968608 100644 --- a/src/pgpcardlist.rs +++ b/src/pgpcardlist.rs @@ -26,10 +26,10 @@ impl Command for CommandImpl { information!("Authentication fingerprint: {}", a); } if let Some(d) = fingerprints.decryption() { - information!("Authentication fingerprint: {}", d); + information!("Decryption fingerprint: {}", d); } if let Some(s) = fingerprints.signature() { - information!("Authentication fingerprint: {}", s); + information!("Signature fingerprint: {}", s); } } }