summaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@pep.foundation>2022-01-06 16:05:18 +0100
committerNeal H. Walfield <neal@pep.foundation>2022-01-12 14:52:20 +0100
commit0d2bccd81ebb296453ecdf6114ca92a54dcc9830 (patch)
treee86e9de59fb066768b97148befc8571e1d6f39d8 /ipc
parentb72c6c6fc2fd5dd61386e929a726dfe667874853 (diff)
buffered-reader, ipc: Fix documentation typo.
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);
/// ```
///