Merge pull request #64 from ovibos/patch-1

Fix typo in README.md
This commit is contained in:
Aaron Weiss 2017-01-08 15:55:03 -05:00 committed by GitHub
commit 1f7d13399d

View file

@ -26,7 +26,7 @@ fn main() {
let cfg = Config {
nickname: Some(format!("irc-rs")),
server: Some(format!("irc.example.com")),
channels: Some(vec![format!("#test")])
channels: Some(vec![format!("#test")]),
.. Default::default()
};
let server = IrcServer::from_config(cfg).unwrap();