summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
Diffstat (limited to 'ipc')
-rw-r--r--ipc/src/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/src/macros.rs b/ipc/src/macros.rs
index 18ace037..c0fc6091 100644
--- a/ipc/src/macros.rs
+++ b/ipc/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);
/// ```
///