summaryrefslogtreecommitdiffstats
path: root/openpgp/src/lib.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-03-31 12:26:47 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-03-31 12:26:47 +0200
commit57a25564c9f08509bfa76848ae5557f792ba6805 (patch)
tree14bf0f560728271308a9c61f253729f182bf4f3c /openpgp/src/lib.rs
parentd9a168e89aab2d7a0a46c449ede166697acd0c3b (diff)
openpgp: Improve summary line of modules and types.
- Avoid repeating the type name. - Avoid self referential, trivial descriptions. - Avoid the terms OpenPGP and Sequoia. - Fix mistakes from the Message -> PacketPile rework.
Diffstat (limited to 'openpgp/src/lib.rs')
-rw-r--r--openpgp/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/lib.rs b/openpgp/src/lib.rs
index fab9fd14..4b1f0183 100644
--- a/openpgp/src/lib.rs
+++ b/openpgp/src/lib.rs
@@ -191,7 +191,7 @@ fn frozen_time() -> std::time::SystemTime {
pub type Result<T> = ::std::result::Result<T, anyhow::Error>;
#[derive(thiserror::Error, Debug, Clone)]
-/// Errors returned by this module.
+/// Errors used in this crate.
///
/// Note: This enum cannot be exhaustively matched to allow future
/// extensions.