diff options
Diffstat (limited to 'src/irc')
-rw-r--r-- | src/irc/irc_client.cpp | 2 | ||||
-rw-r--r-- | src/irc/irc_client.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/irc/irc_client.cpp b/src/irc/irc_client.cpp index 5f0d9b9..1f2a21b 100644 --- a/src/irc/irc_client.cpp +++ b/src/irc/irc_client.cpp @@ -307,7 +307,7 @@ void IrcClient::on_connected() [this] { this->send_message({"AUTHENTICATE", {"PLAIN"}}); - log_warning("negociating SASL now..."); + log_warning("negotiating SASL now..."); }, [] { diff --git a/src/irc/irc_client.hpp b/src/irc/irc_client.hpp index ac2f6a9..3423228 100644 --- a/src/irc/irc_client.hpp +++ b/src/irc/irc_client.hpp @@ -238,7 +238,7 @@ public: */ void on_invited(const IrcMessage& message); /** - * The IRC server sends a CAP message, as part of capabilities negociation. It could be a ACK, + * The IRC server sends a CAP message, as part of capabilities negotiation. It could be a ACK, * NACK, or something else */ void on_cap(const IrcMessage& message); |