Fix typos in comments and variable names (#269)

Thanks `codespell`!
This commit is contained in:
linkmauve 2018-01-10 15:12:54 +01:00 committed by fiaxh
parent 5557c03be8
commit 0ce28c0b0d
11 changed files with 14 additions and 14 deletions

View file

@ -44,7 +44,7 @@ public class FileTransfer : Object {
this.db = db; this.db = db;
id = row[db.file_transfer.id]; id = row[db.file_transfer.id];
account = db.get_account_by_id(row[db.file_transfer.account_id]); // TODO dont have to generate acc new account = db.get_account_by_id(row[db.file_transfer.account_id]); // TODO dont have to generate acc new
string counterpart_jid = db.get_jid_by_id(row[db.file_transfer.counterpart_id]); string counterpart_jid = db.get_jid_by_id(row[db.file_transfer.counterpart_id]);
string counterpart_resource = row[db.file_transfer.counterpart_resource]; string counterpart_resource = row[db.file_transfer.counterpart_resource];

View file

@ -63,7 +63,7 @@ public class Message : Object {
this.db = db; this.db = db;
id = row[db.message.id]; id = row[db.message.id];
account = db.get_account_by_id(row[db.message.account_id]); // TODO dont have to generate acc new account = db.get_account_by_id(row[db.message.account_id]); // TODO dont have to generate acc new
stanza_id = row[db.message.stanza_id]; stanza_id = row[db.message.stanza_id];
type_ = (Message.Type) row[db.message.type_]; type_ = (Message.Type) row[db.message.type_];

View file

@ -16,8 +16,8 @@ public class EntityCapabilitiesStorage : Xep.EntityCapabilities.Storage, Object
db.add_entity_features(entity, features); db.add_entity_features(entity, features);
} }
public Gee.List<string> get_features(string entitiy) { public Gee.List<string> get_features(string entity) {
return db.get_entity_features(entitiy); return db.get_entity_features(entity);
} }
} }
} }

View file

@ -67,7 +67,7 @@ public class DefaultFileDisplay : Plugins.MetaConversationItem {
try{ try{
AppInfo.launch_default_for_uri("file://" + file_transfer.get_uri(), null); AppInfo.launch_default_for_uri("file://" + file_transfer.get_uri(), null);
} catch (Error err) { } catch (Error err) {
print("Tryed to open " + file_transfer.get_uri()); print("Tried to open " + file_transfer.get_uri());
} }
} }
return false; return false;

View file

@ -83,7 +83,7 @@ public class ImageDisplay : Plugins.MetaConversationItem {
try{ try{
AppInfo.launch_default_for_uri(file_transfer.info, null); AppInfo.launch_default_for_uri(file_transfer.info, null);
} catch (Error err) { } catch (Error err) {
print("Tryed to open " + file_transfer.info); print("Tried to open " + file_transfer.info);
} }
}); });

View file

@ -117,7 +117,7 @@ public class MessageTextView : TextView {
try{ try{
AppInfo.launch_default_for_uri(url, null); AppInfo.launch_default_for_uri(url, null);
} catch (Error err) { } catch (Error err) {
print("Tryed to open " + url); print("Tried to open " + url);
} }
} }
return false; return false;

View file

@ -52,7 +52,7 @@ void fail_if_not_error_code(ErrorFunc func, int expectedCode, string? reason = n
func(); func();
fail_if_reached(@"$(reason + ": " ?? "")no error thrown"); fail_if_reached(@"$(reason + ": " ?? "")no error thrown");
} catch (Error e) { } catch (Error e) {
fail_if_not_eq_int(e.code, expectedCode, @"$(reason + ": " ?? "")catched unexpected error"); fail_if_not_eq_int(e.code, expectedCode, @"$(reason + ": " ?? "")caught unexpected error");
} }
} }

View file

@ -282,7 +282,7 @@ public class StanzaNode : StanzaEntry {
} }
/** /**
* Set only occurence * Set only occurrence
**/ **/
public void set_attribute(string name, string val, string? ns_uri = null) { public void set_attribute(string name, string val, string? ns_uri = null) {
if (ns_uri == null) ns_uri = this.ns_uri; if (ns_uri == null) ns_uri = this.ns_uri;

View file

@ -13,7 +13,7 @@ public class Flag : XmppStreamFlag {
public Gee.List<string> features = new ArrayList<string>(); public Gee.List<string> features = new ArrayList<string>();
public Gee.List<Identity>? get_entity_categories(string jid) { 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 isnt this default for hashmap
} }
public bool? has_entity_identity(string jid, string category, string type) { public bool? has_entity_identity(string jid, string category, string type) {

View file

@ -103,7 +103,7 @@ namespace Xmpp.Xep.EntityCapabilities {
} }
public interface Storage : Object { public interface Storage : Object {
public abstract void store_features(string entitiy, Gee.List<string> capabilities); public abstract void store_features(string entity, Gee.List<string> capabilities);
public abstract Gee.List<string> get_features(string entitiy); public abstract Gee.List<string> get_features(string entity);
} }
} }

View file

@ -27,7 +27,7 @@ void fail_if_not_error_code(ErrorFunc func, int expectedCode, string? reason = n
func(); func();
fail_if_reached(@"$(reason + ": " ?? "")no error thrown"); fail_if_reached(@"$(reason + ": " ?? "")no error thrown");
} catch (Error e) { } catch (Error e) {
fail_if_not_eq_int(e.code, expectedCode, @"$(reason + ": " ?? "")catched unexpected error"); fail_if_not_eq_int(e.code, expectedCode, @"$(reason + ": " ?? "")caught unexpected error");
} }
} }