summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-12-01 10:38:27 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-12-01 10:38:27 +0100
commit50234131c7c9ff10689dbb67177b8b068cb28ebb (patch)
treecc2d4f34e41232368b815a7e5137e9c036d8de1a
parent98316651354ff2ead858833e1c0e855f67fb8234 (diff)
openpgp: Clarify.
-rw-r--r--openpgp/src/cert/bundle.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/cert/bundle.rs b/openpgp/src/cert/bundle.rs
index 6564ad89..798a82c8 100644
--- a/openpgp/src/cert/bundle.rs
+++ b/openpgp/src/cert/bundle.rs
@@ -236,8 +236,8 @@ impl<C> ComponentBundle<C> {
// Recall: the signatures are sorted by their creation time in
// descending order, i.e., newest first.
//
- // We want the newest signature that is older than t. So,
- // search for `t`.
+ // We want the newest signature that is older than `t`, or
+ // that has been created at `t`. So, search for `t`.
let i =
// Usually, the first signature is what we are looking for.