From 3252e51af4a0fc082637f94c06b1e200d70843b1 Mon Sep 17 00:00:00 2001 From: ovibos Date: Sun, 8 Jan 2017 15:52:54 -0500 Subject: [PATCH] Fix typo in README.md Without a trailing comma for the `channels` member, the getting started example won't compile. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f8ce272..1e65e77 100644 --- a/README.md +++ b/README.md @@ -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();