summaryrefslogtreecommitdiffstats
path: root/buffered-reader/src
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 /buffered-reader/src
parentb72c6c6fc2fd5dd61386e929a726dfe667874853 (diff)
buffered-reader, ipc: Fix documentation typo.
Diffstat (limited to 'buffered-reader/src')
-rw-r--r--buffered-reader/src/macros.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/buffered-reader/src/macros.rs b/buffered-reader/src/macros.rs
index 7d2142e9..2738d178 100644
--- a/buffered-reader/src/macros.rs
+++ b/buffered-reader/src/macros.rs
@@ -86,7 +86,7 @@ macro_rules! tracer {
/// 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);
/// ```
///