cleanup: Fix spelling errors

https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/515
This commit is contained in:
Veerasamy Sevagen
2019-05-15 19:32:29 +00:00
committed by Florian Müllner
parent 51655be6a3
commit b197a1affb
14 changed files with 21 additions and 21 deletions

View File

@ -235,14 +235,14 @@ var NMConnectionSection = class NMConnectionSection {
if (!this._connectionValid(connection))
return;
// This function is called everytime connection is added or updated
// This function is called every time the connection is added or updated.
// In the usual case, we already added this connection and UUID
// didn't change. So we need to check if we already have an item,
// and update it for properties in the connection that changed
// (the only one we care about is the name)
// But it's also possible we didn't know about this connection
// (eg, during coldplug, or because it was updated and suddenly
// it's valid for this device), in which case we add a new item
// it's valid for this device), in which case we add a new item.
let item = this._connectionItems.get(connection.get_uuid());
if (item)