diff --git a/NEWS b/NEWS index d37d46d5..4bf674c8 100644 --- a/NEWS +++ b/NEWS @@ -179,7 +179,7 @@ Changes: * Substantial client application/controller/main window/composer class cleanup * Geary.Engine API cleanup - * Improve logging intialisation + * Improve logging initialisation * Online manual updates Thanks to all who contributed code fixes and enhancements to this diff --git a/meson.build b/meson.build index 10062688..4db419ef 100644 --- a/meson.build +++ b/meson.build @@ -103,7 +103,7 @@ posix = valac.find_library('posix') webkit2gtk_web_extension = dependency('webkit2gtk-web-extension-4.0', version: '>=' + target_webkit) # Libunwind system dependencies above ensures appropriate versions, -# but this declared depencency is what we actually build against so we +# but this declared dependency is what we actually build against so we # can include the custom VAPI correctly. We need to add unwind_lib to # the search path for these so Flatpak builds can find the C lib. if libunwind_dep.found() diff --git a/meson_options.txt b/meson_options.txt index 1e72e0af..a18438d4 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -35,7 +35,7 @@ option( 'valadoc', type: 'boolean', value: false, - description: 'Whether to build the documentaton (requires valadoc).' + description: 'Whether to build the documentation (requires valadoc).' ) # Development options diff --git a/src/client/accounts/accounts-editor-add-pane.vala b/src/client/accounts/accounts-editor-add-pane.vala index 8932d8c3..a4a333cd 100644 --- a/src/client/accounts/accounts-editor-add-pane.vala +++ b/src/client/accounts/accounts-editor-add-pane.vala @@ -194,7 +194,7 @@ internal class Accounts.EditorAddPane : Gtk.Grid, EditorPane { // Translators: In-app notification label message = _("Check your receiving login and password"); } catch (GLib.TlsError.BAD_CERTIFICATE err) { - debug("Error validating IMAP certifiate: %s", err.message); + debug("Error validating IMAP certificate: %s", err.message); // Nothing to do here, since the untrusted host // handler will be dealing with it } catch (GLib.IOError.CANCELLED err) { @@ -262,7 +262,7 @@ internal class Accounts.EditorAddPane : Gtk.Grid, EditorPane { } catch (GLib.TlsError.BAD_CERTIFICATE err) { // Nothing to do here, since the untrusted host // handler will be dealing with it - debug("Error validating SMTP certifiate: %s", err.message); + debug("Error validating SMTP certificate: %s", err.message); } catch (GLib.Error err) { Geary.ErrorContext context = new Geary.ErrorContext(err); debug("Error validating SMTP service: %s", diff --git a/src/client/accounts/accounts-editor-servers-pane.vala b/src/client/accounts/accounts-editor-servers-pane.vala index 3c9a8f1a..54476264 100644 --- a/src/client/accounts/accounts-editor-servers-pane.vala +++ b/src/client/accounts/accounts-editor-servers-pane.vala @@ -322,7 +322,7 @@ internal class Accounts.EditorServersPane : } catch (GLib.TlsError.BAD_CERTIFICATE err) { // Nothing to do here, since the untrusted host // handler will be dealing with it - debug("Error validating IMAP certifiate: %s", err.message); + debug("Error validating IMAP certificate: %s", err.message); } catch (GLib.IOError.CANCELLED err) { // Nothing to do here, someone just cancelled debug("IMAP validation was cancelled: %s", err.message); @@ -356,7 +356,7 @@ internal class Accounts.EditorServersPane : } catch (GLib.TlsError.BAD_CERTIFICATE err) { // Nothing to do here, since the untrusted host // handler will be dealing with it - debug("Error validating SMTP certifiate: %s", err.message); + debug("Error validating SMTP certificate: %s", err.message); } catch (GLib.IOError.CANCELLED err) { // Nothing to do here, someone just cancelled debug("SMTP validation was cancelled: %s", err.message); diff --git a/src/client/application/application-account-context.vala b/src/client/application/application-account-context.vala index 0d18648f..d24b1e67 100644 --- a/src/client/application/application-account-context.vala +++ b/src/client/application/application-account-context.vala @@ -46,7 +46,7 @@ public class Application.AccountContext : Geary.BaseObject { get; internal set; default = false; } - /** Determines if the account is prompting for a pasword. */ + /** Determines if the account is prompting for a password. */ internal bool authentication_prompting { get; internal set; default = false; } diff --git a/src/client/application/application-notification-plugin-context.vala b/src/client/application/application-notification-plugin-context.vala index 2f0b6103..774a543f 100644 --- a/src/client/application/application-notification-plugin-context.vala +++ b/src/client/application/application-notification-plugin-context.vala @@ -176,7 +176,7 @@ internal class Application.NotificationPluginContext : } } - /** Determines if a folder is curently being monitored. */ + /** Determines if a folder is currently being monitored. */ public bool is_monitoring_folder(Plugin.Folder target) { return this.folder_information.has_key( this.globals.folders.to_engine_folder(target) diff --git a/src/client/composer/composer-web-view.vala b/src/client/composer/composer-web-view.vala index a998f113..aea46978 100644 --- a/src/client/composer/composer-web-view.vala +++ b/src/client/composer/composer-web-view.vala @@ -437,7 +437,7 @@ public class Composer.WebView : ClientWebView { null) ); } catch (Error err) { - debug("Error checking or attchment keywords: %s", err.message); + debug("Error checking or attachment keywords: %s", err.message); return false; } } diff --git a/src/client/composer/composer-widget.vala b/src/client/composer/composer-widget.vala index 176c60df..addda127 100644 --- a/src/client/composer/composer-widget.vala +++ b/src/client/composer/composer-widget.vala @@ -2764,7 +2764,7 @@ public class Composer.Widget : Gtk.EventBox, Geary.BaseInterface { if (lang == null) { // No preferred lang found, so just use first - // supported matching langauge + // supported matching language foreach (string pref in langs) { lang = Gspell.Language.lookup(pref); if (lang != null) { diff --git a/src/client/plugin/plugin-notification-extension.vala b/src/client/plugin/plugin-notification-extension.vala index 200098c8..11be9e8a 100644 --- a/src/client/plugin/plugin-notification-extension.vala +++ b/src/client/plugin/plugin-notification-extension.vala @@ -120,7 +120,7 @@ public interface Plugin.NotificationContext : Geary.BaseObject { /** Stops monitoring a folder for new messages. */ public abstract void stop_monitoring_folder(Plugin.Folder target); - /** Determines if a folder is curently being monitored. */ + /** Determines if a folder is currently being monitored. */ public abstract bool is_monitoring_folder(Plugin.Folder target); } diff --git a/src/client/util/util-gtk.vala b/src/client/util/util-gtk.vala index 1d41f2e5..09d59e81 100644 --- a/src/client/util/util-gtk.vala +++ b/src/client/util/util-gtk.vala @@ -159,7 +159,7 @@ namespace Util.Gtk { * @param existing_child_menu - if not null, a child menu that is * about to be descended into * @param existing_action - existing fully qualified action name - * of the curent item, if any + * of the current item, if any * @param new_item - copy of the menu item being visited, which if * accepted will be added to the new model */ diff --git a/src/client/util/util-js.vala b/src/client/util/util-js.vala index 6d12072c..52c9428b 100644 --- a/src/client/util/util-js.vala +++ b/src/client/util/util-js.vala @@ -185,7 +185,7 @@ namespace Util.JS { } /** - * A class for constructing a well formed, safe, invokable JS call. + * A class for constructing a well formed, safe, invocable JS call. */ public class Callable { diff --git a/src/engine/imap/api/imap-client-service.vala b/src/engine/imap/api/imap-client-service.vala index 044a7c05..b20da56c 100644 --- a/src/engine/imap/api/imap-client-service.vala +++ b/src/engine/imap/api/imap-client-service.vala @@ -327,7 +327,7 @@ public class Geary.Imap.ClientService : Geary.ClientService { ClientSession? new_session = null; try { // Work around GNOME/glib#1872 by waiting a second and - // retying when a G_IO_ERROR_FAILED is received. Pull this + // retrying when a G_IO_ERROR_FAILED is received. Pull this // loop out when that bug is fixed. int attempts = 3; while (new_session == null) { diff --git a/src/engine/imap/parameter/imap-list-parameter.vala b/src/engine/imap/parameter/imap-list-parameter.vala index 777d42fc..f828e290 100644 --- a/src/engine/imap/parameter/imap-list-parameter.vala +++ b/src/engine/imap/parameter/imap-list-parameter.vala @@ -34,7 +34,7 @@ public class Geary.Imap.ListParameter : Geary.Imap.Parameter { // noop } - /** Constructs a new list wit a single parameter. */ + /** Constructs a new list with a single parameter. */ public ListParameter.single(Parameter param) { base(); add(param); diff --git a/src/engine/imap/response/imap-response-code-type.vala b/src/engine/imap/response/imap-response-code-type.vala index ce318d02..bfd2a68e 100644 --- a/src/engine/imap/response/imap-response-code-type.vala +++ b/src/engine/imap/response/imap-response-code-type.vala @@ -26,7 +26,7 @@ public class Geary.Imap.ResponseCodeType : BaseObject, Gee.Hashable