From f1df430977e93084b7c7f929fb998acd1ebea487 Mon Sep 17 00:00:00 2001 From: Rob Date: Tue, 23 Feb 2016 23:55:33 -0500 Subject: [PATCH] Update Music.cs --- NadekoBot/Modules/Music.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NadekoBot/Modules/Music.cs b/NadekoBot/Modules/Music.cs index 3d676bca..4ae4fcb4 100644 --- a/NadekoBot/Modules/Music.cs +++ b/NadekoBot/Modules/Music.cs @@ -46,7 +46,7 @@ namespace NadekoBot.Modules { cgb.CreateCommand("s") .Alias("stop") - .Description("Completely stops the music and unbinds the bot from the channel and cleanes up files.") + .Description("Completely stops the music, unbinds the bot from the channel, and cleanes up files.") .Do(e => { if (musicPlayers.ContainsKey(e.Server) == false) return; musicPlayers[e.Server].Stop(); @@ -65,7 +65,7 @@ namespace NadekoBot.Modules { cgb.CreateCommand("q") .Alias("yq") - .Description("Queue a song using keywords or link. Bot will join your voice channel. **You must be in a voice channel**.\n**Usage**: `!m q Dream Of Venice`") + .Description("Queue a song using keywords or a link. Bot will join your voice channel. **You must be in a voice channel**.\n**Usage**: `!m q Dream Of Venice`") .Parameter("query", ParameterType.Unparsed) .Do(async e => await QueueSong(e,e.GetArg("query")));