summaryrefslogtreecommitdiffstats
path: root/openpgp/src/serialize/stream/padding.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/serialize/stream/padding.rs')
-rw-r--r--openpgp/src/serialize/stream/padding.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/serialize/stream/padding.rs b/openpgp/src/serialize/stream/padding.rs
index b92f913c..b1750b07 100644
--- a/openpgp/src/serialize/stream/padding.rs
+++ b/openpgp/src/serialize/stream/padding.rs
@@ -99,7 +99,7 @@ use crate::types::{
///
/// [Section 9.3 of RFC 4880]: https://tools.ietf.org/html/rfc4880#section-9.3
///
-/// # Example
+/// # Examples
///
/// This example illustrates the use of `Padder` with the [Padmé]
/// policy. Note that for brevity, the encryption and signature
@@ -148,7 +148,7 @@ pub struct Padder<'a, P: Fn(u64) -> u64 + 'a> {
impl<'a, P: Fn(u64) -> u64 + 'a> Padder<'a, P> {
/// Creates a new padder with the given policy.
///
- /// # Example
+ /// # Examples
///
/// This example illustrates the use of `Padder` with the [Padmé]
/// policy.