Apply clippy suggestion

This commit is contained in:
Jonas Platte 2019-10-31 22:21:26 +01:00
parent 1cd00e05e9
commit f887310524

View File

@ -141,7 +141,7 @@ pub enum Algorithm {
impl Display for Algorithm {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
let name = match *self {
Algorithm::Ed25519 => "ed25519",
Self::Ed25519 => "ed25519",
};
write!(f, "{}", name)