Changed error message for NoUsableNick.

This commit is contained in:
Aaron Weiss 2018-02-12 20:30:02 +01:00
parent c13c4294b6
commit 9b99677391
No known key found for this signature in database
GPG key ID: 047D32DF25DC22EF

View file

@ -92,8 +92,8 @@ pub enum IrcError {
data: String,
},
/// All specified nicks were in use or unusable.
#[fail(display = "no usable nicks")]
/// All specified nicknames were in use or unusable.
#[fail(display = "none of the specified nicknames were usable")]
NoUsableNick
}