summaryrefslogtreecommitdiff
path: root/src/sys/aio.rs
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2021-06-12 13:37:10 -0600
committerAlan Somers <asomers@gmail.com>2021-06-12 13:37:30 -0600
commite0ac0719e9a1bfba917b2601c5d2518d287efcc9 (patch)
tree035152c96596c5f41cbbd221be1b413bb577b030 /src/sys/aio.rs
parent37e0c10f3c119b3455213ff183b637b534ad46f3 (diff)
downloadnix-e0ac0719e9a1bfba917b2601c5d2518d287efcc9.zip
Fix bad links in the aio docs
Diffstat (limited to 'src/sys/aio.rs')
-rw-r--r--src/sys/aio.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sys/aio.rs b/src/sys/aio.rs
index a03caa45..fee9c51d 100644
--- a/src/sys/aio.rs
+++ b/src/sys/aio.rs
@@ -379,7 +379,7 @@ impl<'a> AioCb<'a> {
}
}
- /// Like [`from_mut_slice`], but works on constant slices rather than
+ /// Like [`AioCb::from_mut_slice`], but works on constant slices rather than
/// mutable slices.
///
/// An `AioCb` created this way cannot be used with `read`, and its
@@ -1102,8 +1102,8 @@ impl<'a> LioCbBuilder<'a> {
///
/// Afterwards it will be possible to issue the operations with
/// [`LioCb::listio`]. Conversely, it will no longer be possible to add new
- /// operations with [`LioCb::emplace_slice`] or
- /// [`LioCb::emplace_mut_slice`].
+ /// operations with [`LioCbBuilder::emplace_slice`] or
+ /// [`LioCbBuilder::emplace_mut_slice`].
///
/// [`LioCb::listio`]: struct.LioCb.html#method.listio
/// [`LioCb::from_mut_slice`]: struct.LioCb.html#method.from_mut_slice