aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMachiavelli <machiaveltman@gmail.com>2012-01-05 02:56:34 -0800
committerMachiavelli <machiaveltman@gmail.com>2012-01-05 02:56:34 -0800
commit58e04d52d60bdd457278ff400aa4ed705aa46e59 (patch)
tree0bff284c89b0deea5d5a6fec805bb4def029b596 /src
parent031ff47e7c29e923f832e73a97e65c987ff2cb9a (diff)
parent65a427a3226b1ff1ec9431170ceb8f5e1747e3bb (diff)
Merge pull request #4634 from Aokromes/master
Core/Misc: Typo fix by higi closes #3633
Diffstat (limited to 'src')
-rwxr-xr-xsrc/server/game/Chat/Chat.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/game/Chat/Chat.cpp b/src/server/game/Chat/Chat.cpp
index 91ccb42f1d0..cafa7d2048b 100755
--- a/src/server/game/Chat/Chat.cpp
+++ b/src/server/game/Chat/Chat.cpp
@@ -885,11 +885,11 @@ bool ChatHandler::ShowHelpForSubCommands(ChatCommand* table, char const* cmd, ch
std::string list;
for (uint32 i = 0; table[i].Name != NULL; ++i)
{
- // must be available (ignore handler existence for show command with possibe avalable subcomands
+ // must be available (ignore handler existence for show command with possible avalable subcomands)
if (!isAvailable(table[i]))
continue;
- /// for empty subcmd show all available
+ // for empty subcmd show all available
if (*subcmd && !hasStringAbbr(table[i].Name, subcmd))
continue;
@@ -924,7 +924,7 @@ bool ChatHandler::ShowHelpForCommand(ChatCommand* table, const char* cmd)
{
for (uint32 i = 0; table[i].Name != NULL; ++i)
{
- // must be available (ignore handler existence for show command with possibe avalable subcomands
+ // must be available (ignore handler existence for show command with possible avalable subcomands)
if (!isAvailable(table[i]))
continue;
@@ -954,7 +954,7 @@ bool ChatHandler::ShowHelpForCommand(ChatCommand* table, const char* cmd)
{
for (uint32 i = 0; table[i].Name != NULL; ++i)
{
- // must be available (ignore handler existence for show command with possibe avalable subcomands
+ // must be available (ignore handler existence for show command with possible avalable subcomands)
if (!isAvailable(table[i]))
continue;