From 6dd14e7e343223dfb4dc3548afa886bd8ba937c4 Mon Sep 17 00:00:00 2001 From: Rob Date: Wed, 24 Feb 2016 00:30:15 -0500 Subject: [PATCH] Text fixes --- NadekoBot/Modules/Searches.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/NadekoBot/Modules/Searches.cs b/NadekoBot/Modules/Searches.cs index f55756d2..f7ec224a 100644 --- a/NadekoBot/Modules/Searches.cs +++ b/NadekoBot/Modules/Searches.cs @@ -85,7 +85,7 @@ namespace NadekoBot.Modules { }); cgb.CreateCommand("~i") - .Description("Pulls a first image using a search parameter. Use ~ir for different results.\n**Usage**: ~i cute kitten") + .Description("Pulls the first image found using a search parameter. Use ~ir for different results.\n**Usage**: ~i cute kitten") .Parameter("query", ParameterType.Unparsed) .Do(async e => { if (string.IsNullOrWhiteSpace(e.GetArg("query"))) @@ -165,7 +165,7 @@ namespace NadekoBot.Modules { }); cgb.CreateCommand("~osu") - .Description("Shows osu stats for a player\n**Usage**:~osu Name") + .Description("Shows osu stats for a player.\n**Usage**:~osu Name") .Parameter("usr", ParameterType.Unparsed) .Do(async e => { if (string.IsNullOrWhiteSpace(e.GetArg("usr"))) @@ -191,7 +191,7 @@ namespace NadekoBot.Modules { }); cgb.CreateCommand("~ud") - .Description("Searches Urban Dictionary for a word\n**Usage**:~ud Pineapple") + .Description("Searches Urban Dictionary for a word.\n**Usage**:~ud Pineapple") .Parameter("query", ParameterType.Unparsed) .Do(async e => { var arg = e.GetArg("query"); @@ -217,7 +217,7 @@ namespace NadekoBot.Modules { }); // thanks to Blaubeerwald cgb.CreateCommand("~#") - .Description("Searches Tagdef.com for a hashtag\n**Usage**:~# ff") + .Description("Searches Tagdef.com for a hashtag.\n**Usage**:~# ff") .Parameter("query", ParameterType.Unparsed) .Do(async e => { var arg = e.GetArg("query"); @@ -238,7 +238,7 @@ namespace NadekoBot.Modules { await e.Channel.SendMessage(sb.ToString()); } catch { - await e.Channel.SendMessage("💢 Failed finidng a definition for that tag"); + await e.Channel.SendMessage("💢 Failed finidng a definition for that tag."); } }); //todo when moved from parse