summaryrefslogtreecommitdiffstats
path: root/openpgp/src/macros.rs
diff options
context:
space:
mode:
authorNora Widdecke <nora@sequoia-pgp.org>2021-10-25 18:11:14 +0200
committerNora Widdecke <nora@sequoia-pgp.org>2021-10-28 13:58:41 +0200
commit8785a2b7b154663989ee328096af037d4fb17b3f (patch)
tree68f4c9376d72747b934643c3c8008d3ff70bd704 /openpgp/src/macros.rs
parentc577c03ed32988893f30169a1e58d662bb504e8f (diff)
net, openpgp: Fix private documentation.
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);
/// ```
///