summaryrefslogtreecommitdiffstats
path: root/openpgp
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2022-05-11 13:55:02 +0200
committerJustus Winter <justus@sequoia-pgp.org>2022-05-11 14:01:36 +0200
commita72e2448821d90a35d4c5e5e98d4446178e8d8ec (patch)
treedac1fe1539f42110e4259652c1bd8814f77030bb /openpgp
parent5a62481d31054fdb8f86929b94138eb16e223b35 (diff)
openpgp: Fix typo.
Diffstat (limited to 'openpgp')
-rw-r--r--openpgp/src/cert/parser/low_level/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/cert/parser/low_level/mod.rs b/openpgp/src/cert/parser/low_level/mod.rs
index b89ce7bf..e4b2b7ad 100644
--- a/openpgp/src/cert/parser/low_level/mod.rs
+++ b/openpgp/src/cert/parser/low_level/mod.rs
@@ -23,7 +23,7 @@ pub(crate) use self::grammar::CertParser;
//
// Justification: a Token is a tuple containing a Tag and a Packet.
// This function essentially drops the Packet. Dropping the packet is
-// necessary, because packets are not async, but Fail, which we want
+// necessary, because packets are not Sync, but Fail, which we want
// to convert ParseErrors to, is. Since we don't need the packet in
// general anyways, changing the Token to a Tag is a simple and
// sufficient fix. Unfortunately, this conversion is a bit ugly and