diff options
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | src/message.rs | 1 |
2 files changed, 3 insertions, 4 deletions
@@ -1,13 +1,13 @@ -irsc +# irsc + [![travis-ci.org](https://travis-ci.org/tilpner/irsc.svg?branch=master)](https://travis-ci.org/tilpner/irsc) [![crates.io](http://meritbadge.herokuapp.com/irsc)](https://crates.io/crates/irsc) -========= *This repository contains code that has not been properly tested yet, continue at the risk of doing stupid things while discovering parts of this library don't work.* -## Introduction +## Overview Want to build an IRC bot with low resource consumption? You might want to have a look at this library (maybe later, though). diff --git a/src/message.rs b/src/message.rs index fd77aef..25e176c 100644 --- a/src/message.rs +++ b/src/message.rs @@ -1203,5 +1203,4 @@ mod test { assert_eq!(b.parse::<Message>().unwrap(), b2.clone()); assert_eq!(b2.to_string(), b); } - } |