diff options
author | Till Hoeppner | 2015-04-18 15:31:36 +0200 |
---|---|---|
committer | Till Hoeppner | 2015-04-18 16:11:48 +0200 |
commit | b9bd227b0e9902af869cb4b4dd1f5834cc462886 (patch) | |
tree | cbe99966997ef5995d530ca0ec8273610ad146d3 | |
parent | 057d3e0bdb4bb46749267b45223281fd9afc956d (diff) | |
download | irsc-b9bd227b0e9902af869cb4b4dd1f5834cc462886.tar.gz irsc-b9bd227b0e9902af869cb4b4dd1f5834cc462886.tar.xz irsc-b9bd227b0e9902af869cb4b4dd1f5834cc462886.zip |
Fix README
-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); } - } |