Skip to content

Commit c71c1f5

Browse files
committed
*: fix doc build errors
Signed-off-by: Aleksa Sarai <[email protected]>
1 parent 45e25ff commit c71c1f5

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

src/error.rs

-5
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,6 @@ pub enum Error {
149149
backtrace: Backtrace,
150150
},
151151

152-
/// The requested libpathrs operation directly resulted in an operating
153-
/// system error. This should be contrasted with [`InternalOsError`]
154-
/// (which is an error triggered internally by libpathrs while servicing
155-
/// the user request).
156-
///
157152
/// The requested libpathrs operation resulted in a [`SyscallError`] by
158153
/// one of libpathrs's syscall wrappers. This should be contrasted with
159154
/// [`OsError`] -- which indicates an error triggered by a Rust stdlib

src/resolvers/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl ResolverBackend {
8686
/// conduct path resolutions. It's not recommended to change the
8787
/// [`ResolverBackend`] but it wouldn't hurt.
8888
///
89-
/// [`Root`] /struct.Root.html
89+
/// [`Root`]: struct.Root.html
9090
/// [`ResolverBackend`]: enum.ResolverBackend.html
9191
#[derive(Copy, Clone, Debug, Default, Eq, PartialEq)]
9292
pub struct Resolver {

src/root.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub enum InodeType<'a> {
5555

5656
/// Symlink with the given [`Path`], as in [`symlinkat(2)`].
5757
///
58-
/// Note that symlinks can contain any arbitrary [`CStr`]-style string (it
58+
/// Note that symlinks can contain any arbitrary `CStr`-style string (it
5959
/// doesn't need to be a real pathname). We don't do any verification of the
6060
/// target name.
6161
///

0 commit comments

Comments
 (0)