diff --git a/src/error.rs b/src/error.rs index 4f0e79e..23e546c 100644 --- a/src/error.rs +++ b/src/error.rs @@ -15,6 +15,9 @@ * along with irc-stream. If not, see . */ +//! Implements IrcStreamError, an error type +//! that wraps all possible error that are thrown by IrcStream. + use std::{ error::Error, fmt, @@ -22,8 +25,6 @@ use std::{ str, }; -//! Implements IrcStreamError, an error type -//! that wraps all possible error that are thrown by IrcStream. /// A custom error type that wraps all error that IrcStream will throw. #[derive(Debug)] pub enum IrcStreamError {