diff options
author | Charles Kingsley <chaz@anope.org> | 2011-01-29 12:05:34 +0000 |
---|---|---|
committer | Charles Kingsley <chaz@anope.org> | 2011-01-29 12:05:34 +0000 |
commit | c362a1e077d5ede9eadbe79483f2a755b5883e9a (patch) | |
tree | 86cb63b2b2ba0068aa2e19449edfd8e849d994a0 /src | |
parent | 140208e5eeb158cebaf136d4c6c900b47e7f8d2d (diff) |
DP in "an user" grammar police mode.
Diffstat (limited to 'src')
-rw-r--r-- | src/botserv.cpp | 8 | ||||
-rw-r--r-- | src/chanserv.cpp | 2 | ||||
-rw-r--r-- | src/nickalias.cpp | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/botserv.cpp b/src/botserv.cpp index 8c99cd2c4..d3c7a7450 100644 --- a/src/botserv.cpp +++ b/src/botserv.cpp @@ -99,7 +99,7 @@ void botchanmsgs(User *u, ChannelInfo *ci, const Anope::string &buf) /* Now we can make kicker stuff. We try to order the checks * from the fastest one to the slowest one, since there's - * no need to process other kickers if an user is kicked before + * no need to process other kickers if a user is kicked before * the last kicker check. * * But FIRST we check whether the user is protected in any @@ -373,7 +373,7 @@ BotInfo *findbot(const Anope::string &nick) /*************************************************************************/ -/* Returns ban data associated with an user if it exists, allocates it +/* Returns ban data associated with a user if it exists, allocates it otherwise. */ static BanData *get_ban_data(Channel *c, User *u) @@ -415,7 +415,7 @@ static BanData *get_ban_data(Channel *c, User *u) /*************************************************************************/ -/* Returns BotServ data associated with an user on a given channel. +/* Returns BotServ data associated with a user on a given channel. * Allocates it if necessary. */ @@ -484,7 +484,7 @@ void check_ban(ChannelInfo *ci, User *u, int ttbtype) /*************************************************************************/ -/* This makes a bot kick an user. Works somewhat like notice_lang in fact ;) */ +/* This makes a bot kick a user. Works somewhat like notice_lang in fact ;) */ void bot_kick(ChannelInfo *ci, User *u, LanguageString message, ...) { diff --git a/src/chanserv.cpp b/src/chanserv.cpp index 0898da62f..741349a46 100644 --- a/src/chanserv.cpp +++ b/src/chanserv.cpp @@ -587,7 +587,7 @@ void update_cs_lastseen(User *user, ChannelInfo *ci) /*************************************************************************/ -/* Returns the best ban possible for an user depending of the bantype +/* Returns the best ban possible for a user depending of the bantype value. */ int get_idealban(ChannelInfo *ci, User *u, Anope::string &ret) diff --git a/src/nickalias.cpp b/src/nickalias.cpp index b49a02121..532eb76ba 100644 --- a/src/nickalias.cpp +++ b/src/nickalias.cpp @@ -66,7 +66,7 @@ NickAlias::~NickAlias() { FOREACH_MOD(I_OnDelNick, OnDelNick(this)); - /* Second thing to do: look for an user using the alias + /* Second thing to do: look for a user using the alias * being deleted, and make appropriate changes */ User *u = finduser(this->nick); if (u && u->Account()) |