Capitalize mentions of Twitch, Chatterino, and IRC in comments and text/settings (#3274)

This commit is contained in:
Felanbird
2021-10-17 09:06:58 -04:00
committed by GitHub
parent 06245f3713
commit be3609a927
21 changed files with 35 additions and 35 deletions
+2 -2
View File
@@ -23,7 +23,7 @@ public:
virtual ~AbstractIrcServer() = default;
// initializeIrc must be called from the derived class
// this allows us to initialize the abstract irc server based on the derived class's parameters
// this allows us to initialize the abstract IRC server based on the derived class's parameters
void initializeIrc();
// connection
@@ -57,7 +57,7 @@ protected:
virtual void initializeConnectionSignals(IrcConnection *connection,
ConnectionType type){};
// initializeConnection is called every time before we try to connect to the irc server
// initializeConnection is called every time before we try to connect to the IRC server
virtual void initializeConnection(IrcConnection *connection,
ConnectionType type) = 0;