summaryrefslogtreecommitdiffstats
path: root/openpgp/src/types/timestamp.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2020-02-06 14:49:01 +0100
committerJustus Winter <justus@sequoia-pgp.org>2020-02-06 15:06:09 +0100
commitd6ed2a3cbb18c50c2da73d5efbdade343e3bad12 (patch)
tree15cefd9945499ab20065acb30df86d3ccd829cca /openpgp/src/types/timestamp.rs
parent23110e2844a19ffdd1d5c1699cb868f93f734ccc (diff)
openpgp: Rename methods 'set_policy' to 'with_policy'.
- Fixes #427.
Diffstat (limited to 'openpgp/src/types/timestamp.rs')
-rw-r--r--openpgp/src/types/timestamp.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/types/timestamp.rs b/openpgp/src/types/timestamp.rs
index 53f84987..aa60812c 100644
--- a/openpgp/src/types/timestamp.rs
+++ b/openpgp/src/types/timestamp.rs
@@ -129,13 +129,13 @@ impl Timestamp {
///
/// /// First, get the certification key.
/// let mut keypair =
- /// alice.keys().set_policy(policy, t).secret().for_certification()
+ /// alice.keys().with_policy(policy, t).secret().for_certification()
/// .nth(0).ok_or_else(|| failure::err_msg("no valid key at"))?
/// .key().clone().into_keypair()?;
///
/// // Then, lookup the binding between `bob@example.org` and
/// // `bob` at `t`.
- /// let ca = bob.userids().set_policy(policy, t)
+ /// let ca = bob.userids().with_policy(policy, t)
/// .filter(|ca| ca.userid().value() == b"bob@example.org")
/// .nth(0).ok_or_else(|| failure::err_msg("no valid userid"))?;
///