summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.