Update 'src/error.rs'

Doc comments are hard…
This commit is contained in:
Thelie 2021-05-05 20:55:07 +02:00
parent cbadc86144
commit ff40d7ea25

View file

@ -15,6 +15,9 @@
* along with irc-stream. If not, see <https://www.gnu.org/licenses/>. * along with irc-stream. If not, see <https://www.gnu.org/licenses/>.
*/ */
//! Implements IrcStreamError, an error type
//! that wraps all possible error that are thrown by IrcStream.
use std::{ use std::{
error::Error, error::Error,
fmt, fmt,
@ -22,8 +25,6 @@ use std::{
str, 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. /// A custom error type that wraps all error that IrcStream will throw.
#[derive(Debug)] #[derive(Debug)]
pub enum IrcStreamError { pub enum IrcStreamError {