diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/cli.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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), |
