Fixed compilation, and updated README.

This commit is contained in:
Aaron Weiss 2014-12-19 10:48:59 -05:00
parent d2aa8df1b9
commit d76dd610de
3 changed files with 4 additions and 4 deletions

View file

@ -332,7 +332,7 @@ mod test {
#[test]
fn is_error() {
assert!(!Response::RPL_NAMREPLY.is_error())
assert!(Response::ERR_NICKNAMEINUSE.is_error())
assert!(!Response::RPL_NAMREPLY.is_error());
assert!(Response::ERR_NICKNAMEINUSE.is_error());
}
}