aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill Hoeppner2015-04-18 15:31:36 +0200
committerTill Hoeppner2015-04-18 16:11:48 +0200
commitb9bd227b0e9902af869cb4b4dd1f5834cc462886 (patch)
treecbe99966997ef5995d530ca0ec8273610ad146d3
parent057d3e0bdb4bb46749267b45223281fd9afc956d (diff)
downloadirsc-b9bd227b0e9902af869cb4b4dd1f5834cc462886.tar.gz
irsc-b9bd227b0e9902af869cb4b4dd1f5834cc462886.tar.xz
irsc-b9bd227b0e9902af869cb4b4dd1f5834cc462886.zip
Fix README
-rw-r--r--README.md6
-rw-r--r--src/message.rs1
2 files changed, 3 insertions, 4 deletions
diff --git a/README.md b/README.md
index b455793..1e9886b 100644
--- a/README.md
+++ b/README.md
@@ -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);
}
-
}