summaryrefslogtreecommitdiffstats
path: root/openpgp/src/types
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2023-08-11 18:34:48 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2023-08-11 18:34:48 -0400
commitc243834baa3115eda8445b111e3fe47e4bd7793e (patch)
tree124a7abbbd13593ae749445b89a1ebeb9facf705 /openpgp/src/types
parent648858b7b8ce1db35a6f5f4a993a79590a3991c7 (diff)
fix spelling of compression
Diffstat (limited to 'openpgp/src/types')
-rw-r--r--openpgp/src/types/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/types/mod.rs b/openpgp/src/types/mod.rs
index 53716fe5..35937a6a 100644
--- a/openpgp/src/types/mod.rs
+++ b/openpgp/src/types/mod.rs
@@ -1260,7 +1260,7 @@ impl fmt::Display for CompressionAlgorithm {
CompressionAlgorithm::Private(u) =>
f.write_fmt(format_args!("Private/Experimental compression algorithm {}", u)),
CompressionAlgorithm::Unknown(u) =>
- f.write_fmt(format_args!("Unknown comppression algorithm {}", u)),
+ f.write_fmt(format_args!("Unknown compression algorithm {}", u)),
}
}
}