summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-09-15 13:24:28 +0200
committerJustus Winter <justus@sequoia-pgp.org>2020-09-15 13:24:28 +0200
commitebe340e163c65078534c6905f3f46b4dbdef553c (patch)
tree366938dab22f14af43f03d99a7f4db99ed0c24df
parent750c5847526fa921aadce788ecd764630a77973a (diff)
openpgp: TPK -> cert.
-rw-r--r--openpgp/src/cert/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/cert/mod.rs b/openpgp/src/cert/mod.rs
index 13368a64..2335c4ba 100644
--- a/openpgp/src/cert/mod.rs
+++ b/openpgp/src/cert/mod.rs
@@ -2050,7 +2050,7 @@ impl Cert {
/// This function turns the certificate into a sequence of
/// packets, appends the packets to the end of it, and
/// canonicalizes the result. [Known packets that don't belong in
- /// a TPK or TSK] cause this function to return an error. Unknown
+ /// a cert or TSK] cause this function to return an error. Unknown
/// packets are retained and added to the list of [unknown
/// components]. The goal is to provide some future
/// compatibility.
@@ -2059,7 +2059,7 @@ impl Cert {
/// replaces the existing key. This way, secret key material can
/// be added, removed, encrypted, or decrypted.
///
- /// [Known packets that don't belong in a TPK or TSK]: https://tools.ietf.org/html/rfc4880#section-11
+ /// [Known packets that don't belong in a cert or TSK]: https://tools.ietf.org/html/rfc4880#section-11
/// [unknown components]: #method.unknowns
///
/// # Examples