chore: fix typo

This commit is contained in:
2021-07-10 15:45:09 +08:00
parent a7fd036328
commit 60e10c56c4

View File

@@ -26,10 +26,10 @@ impl Command for CommandImpl {
information!("Authentication fingerprint: {}", a); information!("Authentication fingerprint: {}", a);
} }
if let Some(d) = fingerprints.decryption() { if let Some(d) = fingerprints.decryption() {
information!("Authentication fingerprint: {}", d); information!("Decryption fingerprint: {}", d);
} }
if let Some(s) = fingerprints.signature() { if let Some(s) = fingerprints.signature() {
information!("Authentication fingerprint: {}", s); information!("Signature fingerprint: {}", s);
} }
} }
} }