summaryrefslogtreecommitdiffstats
path: root/openpgp/src/macros.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/macros.rs')
-rw-r--r--openpgp/src/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/macros.rs b/openpgp/src/macros.rs
index 1714fa1b..bdcd591a 100644
--- a/openpgp/src/macros.rs
+++ b/openpgp/src/macros.rs
@@ -142,7 +142,7 @@ macro_rules! time_it {
/// trait bounds:
///
/// ```
-/// pub struct MyWriterWithLifetime<a', C, W: io::Write> {}
+/// pub struct MyWriterWithLifetime<'a, C, W: io::Write> {};
/// assert_send_and_sync!(MyWriterStruct<'_, C, W> where C, W: io::Write);
/// ```
///