From 87c69ed955e3bad70f68f77322d3464f2aaf00a3 Mon Sep 17 00:00:00 2001 From: Scott Cohen Date: Wed, 19 Jul 2017 20:40:53 -0700 Subject: [PATCH] network: Fix typo in error message Replaced "conneciton" with "connection" (both without quotes) in panels/network/connection-editor/net-connection-editor.c:860. https://bugzilla.gnome.org/show_bug.cgi?id=785100 --- panels/network/connection-editor/net-connection-editor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panels/network/connection-editor/net-connection-editor.c b/panels/network/connection-editor/net-connection-editor.c index d08d011e8..8c21667c6 100644 --- a/panels/network/connection-editor/net-connection-editor.c +++ b/panels/network/connection-editor/net-connection-editor.c @@ -857,7 +857,7 @@ forgotten_cb (GObject *source_object, if (!nm_remote_connection_delete_finish (connection, res, &error)) { if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CANCELLED)) - g_warning ("Failed to delete conneciton %s: %s", + g_warning ("Failed to delete connection %s: %s", nm_connection_get_id (NM_CONNECTION (connection)), error->message); g_error_free (error);