diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/inspircd.h | 8 | ||||
-rw-r--r-- | include/logger.h | 2 | ||||
-rw-r--r-- | include/numerics.h | 4 | ||||
-rw-r--r-- | include/protocol.h | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index 0de64b103..9b14598e4 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -300,7 +300,7 @@ class CoreExport InspIRCd */ std::vector<ListenSocket*> ports; - /** Set to the current signal recieved + /** Set to the current signal received */ static sig_atomic_t s_signal; @@ -403,12 +403,12 @@ class CoreExport InspIRCd static bool IsSID(const std::string& sid); /** Handles incoming signals after being set - * @param signal the signal recieved + * @param signal the signal received */ void SignalHandler(int signal); - /** Sets the signal recieved - * @param signal the signal recieved + /** Sets the signal received + * @param signal the signal received */ static void SetSignal(int signal); diff --git a/include/logger.h b/include/logger.h index 5d4a80d9f..c03c84d9a 100644 --- a/include/logger.h +++ b/include/logger.h @@ -202,7 +202,7 @@ class CoreExport LogManager : public fakederef<LogManager> */ bool AddLogType(const std::string &type, LogStream *l, bool autoclose); - /** Removes a logstream from the core. After removal, it will not recieve further events. + /** Removes a logstream from the core. After removal, it will not receive further events. * If the LogStream was ever added with autoclose, it will be closed after this call (this means the pointer won't be valid anymore). */ void DelLogStream(LogStream* l); diff --git a/include/numerics.h b/include/numerics.h index 8b574b249..8bde83e1a 100644 --- a/include/numerics.h +++ b/include/numerics.h @@ -124,7 +124,7 @@ enum /* * A quick side-rant about the next group of numerics.. - * There are clients out there that like to assume that just because they don't recieve a numeric + * There are clients out there that like to assume that just because they don't receive a numeric * they know, that they have joined the channel. * * If IRC was at all properly standardised, this may even be a semi-acceptable assumption to make, @@ -133,7 +133,7 @@ enum * instead! * * tl;dr version: - * DON'T MAKE YOUR CLIENT ASSUME YOU JOINED UNLESS YOU RECIEVE A JOIN WITH YOUR DAMN NICK ON IT. + * DON'T MAKE YOUR CLIENT ASSUME YOU JOINED UNLESS YOU RECEIVE A JOIN WITH YOUR DAMN NICK ON IT. * Thanks. * * -- A message from the IRC group for coder sanity, and w00t diff --git a/include/protocol.h b/include/protocol.h index a7c727e8c..f98f6b37d 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -104,7 +104,7 @@ class CoreExport ProtocolInterface /** Send a message to a channel. * @param target The channel to message. - * @param status The status character (e.g. %) required to recieve. + * @param status The status character (e.g. %) required to receive. * @param text The message to send. * @param type The message type (MSG_PRIVMSG or MSG_NOTICE) */ @@ -119,7 +119,7 @@ class CoreExport ProtocolInterface /** Send a notice to a channel. * @param target The channel to message. - * @param status The status character (e.g. %) required to recieve. + * @param status The status character (e.g. %) required to receive. * @param text The message to send. */ void SendChannelNotice(Channel* target, char status, const std::string &text) |