diff options
author | Sergey Ponomarev <stokito@gmail.com> | 2024-09-07 15:16:34 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-09-07 16:53:18 +0300 |
commit | 6663b7ce90df0de2241e99598f62aebb4aff4fd1 (patch) | |
tree | e93b4ac6e583a63d20fcd3b5e6ff51045b29cf84 /protocols/JabberG/src/jabber_menu.cpp | |
parent | ea0011d6d970151303ff57f53f34224c9d0029aa (diff) |
chore: fix grammar errors in comments
Mostly missing articles
Diffstat (limited to 'protocols/JabberG/src/jabber_menu.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_menu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_menu.cpp b/protocols/JabberG/src/jabber_menu.cpp index aa323186c8..37fbfdee45 100644 --- a/protocols/JabberG/src/jabber_menu.cpp +++ b/protocols/JabberG/src/jabber_menu.cpp @@ -423,7 +423,7 @@ INT_PTR __cdecl CJabberProto::OnMenuTransportResolve(WPARAM hContact, LPARAM) INT_PTR __cdecl CJabberProto::OnMenuBookmarkAdd(WPARAM hContact, LPARAM)
{
if (!hContact)
- return 0; // we do not add ourself to the roster. (buggy situation - should not happen)
+ return 0; // do not add yourself to the roster. (buggy situation and should not happen)
ptrA roomID(ContactToJID(hContact));
if (roomID == nullptr)
@@ -538,7 +538,7 @@ void CJabberProto::OnBuildProtoMenu() BuildPrivacyListsMenu(false);
//////////////////////////////////////////////////////////////////////////////////////
- // build priority menu
+ // build a priority menu
BuildPriorityMenu();
|