summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_api.cpp
diff options
context:
space:
mode:
authorSergey Ponomarev <stokito@gmail.com>2024-09-07 15:16:34 +0300
committerGeorge Hazan <george.hazan@gmail.com>2024-09-07 16:53:18 +0300
commit6663b7ce90df0de2241e99598f62aebb4aff4fd1 (patch)
treee93b4ac6e583a63d20fcd3b5e6ff51045b29cf84 /protocols/JabberG/src/jabber_api.cpp
parentea0011d6d970151303ff57f53f34224c9d0029aa (diff)
chore: fix grammar errors in comments
Mostly missing articles
Diffstat (limited to 'protocols/JabberG/src/jabber_api.cpp')
-rw-r--r--protocols/JabberG/src/jabber_api.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_api.cpp b/protocols/JabberG/src/jabber_api.cpp
index 2c0fe72d1a..1183e2c9e3 100644
--- a/protocols/JabberG/src/jabber_api.cpp
+++ b/protocols/JabberG/src/jabber_api.cpp
@@ -255,7 +255,7 @@ int CJabberProto::AddFeatures(const char *szFeatures)
const char *szFeat = szFeatures;
while (szFeat[0]) {
JabberFeatCapPairDynamic *fcp = FindFeature(szFeat);
- // if someone is trying to add one of core features, RegisterFeature() will return false, so we don't have to perform this check here
+ // if someone is trying to add one of the core features, RegisterFeature() will return false, so we don't have to perform this check here
if (!fcp) { // if the feature is not registered yet
if (!RegisterFeature(szFeat, nullptr))
ret = false;