diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-05-19 15:35:52 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-05-19 15:35:52 +0900 |
commit | 4ae7fe50e5aae28dee3d207b0ca02207c46bb781 (patch) | |
tree | e7ab260fed9626303b27d9f76c9861360671d28e /lib | |
parent | 626b2711a49e581babafd179ce362a1c88db8b85 (diff) | |
download | libquotient-4ae7fe50e5aae28dee3d207b0ca02207c46bb781.tar.gz libquotient-4ae7fe50e5aae28dee3d207b0ca02207c46bb781.zip |
Improve wording in a comment
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index e3da3c16..98cd1ef1 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -80,8 +80,8 @@ class Connection::Private std::unique_ptr<ConnectionData> data; // A complex key below is a pair of room name and whether its // state is Invited. The spec mandates to keep Invited room state - // separately so we should, e.g., keep objects for Invite and - // Leave state of the same room. + // separately; specifically, we should keep objects for Invite and + // Leave state of the same room if the two happen to co-exist. QHash<QPair<QString, bool>, Room*> roomMap; // Mapping from aliases to room ids, as per the last sync QHash<QString, QString> roomAliasMap; |