From a7a20efb0c96ef560b64c54e600cc5296afb545d Mon Sep 17 00:00:00 2001 From: Aaron Weiss Date: Sun, 25 Jun 2017 04:23:56 -0400 Subject: [PATCH] Fixed docs for JOIN (fixes #90). --- src/proto/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proto/command.rs b/src/proto/command.rs index 8b28d3b..26b087b 100644 --- a/src/proto/command.rs +++ b/src/proto/command.rs @@ -30,7 +30,7 @@ pub enum Command { SQUIT(String, String), // 3.2 Channel operations - /// JOIN chanlist [chankeys] + /// JOIN chanlist [chankeys] :[Real name] JOIN(String, Option, Option), /// PART chanlist :[comment] PART(String, Option),