summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cli.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli.rs b/src/cli.rs
index 57c5c07..8dac8ff 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -142,9 +142,9 @@ fn started_msg(listener: &net::TcpListener) -> io::Result<String> {
#[derive(Debug, thiserror::Error)]
#[error(transparent)]
pub enum Error {
- /// Failure due to `io::Error`. See [`io::Error`].
+ /// Failure due to an I/O-related error.
Io(#[from] io::Error),
- /// Failure due to a database initialization error. See [`db::Error`].
+ /// Failure due to a database initialization error.
Database(#[from] db::Error),
/// Failure due to invalid umask-related options.
Umask(#[from] umask::Error),