diff options
author | linkmauve <linkmauve@linkmauve.fr> | 2018-01-10 15:12:54 +0100 |
---|---|---|
committer | fiaxh <fiaxh@users.noreply.github.com> | 2018-01-10 15:12:54 +0100 |
commit | 0ce28c0b0d87cb199ef790a9acc1ba25e64e2e84 (patch) | |
tree | 381a0eb06e0333628aa27f9e477b19365612861d /xmpp-vala/src/module/xep/0030_service_discovery | |
parent | 5557c03be87a622fa830b26e27ca6b158093937c (diff) | |
download | dino-0ce28c0b0d87cb199ef790a9acc1ba25e64e2e84.tar.gz dino-0ce28c0b0d87cb199ef790a9acc1ba25e64e2e84.zip |
Fix typos in comments and variable names (#269)
Thanks `codespell`!
Diffstat (limited to 'xmpp-vala/src/module/xep/0030_service_discovery')
-rw-r--r-- | xmpp-vala/src/module/xep/0030_service_discovery/flag.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmpp-vala/src/module/xep/0030_service_discovery/flag.vala b/xmpp-vala/src/module/xep/0030_service_discovery/flag.vala index cd847974..4f3e5eea 100644 --- a/xmpp-vala/src/module/xep/0030_service_discovery/flag.vala +++ b/xmpp-vala/src/module/xep/0030_service_discovery/flag.vala @@ -13,7 +13,7 @@ public class Flag : XmppStreamFlag { public Gee.List<string> features = new ArrayList<string>(); public Gee.List<Identity>? get_entity_categories(string jid) { - return entity_identities.has_key(jid) ? entity_identities[jid] : null; // TODO isnt this default for hashmap + return entity_identities.has_key(jid) ? entity_identities[jid] : null; // TODO isn’t this default for hashmap } public bool? has_entity_identity(string jid, string category, string type) { |