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
This commit is contained in:
Scott Cohen 2017-07-19 20:40:53 -07:00 committed by Georges Basile Stavracas Neto
parent 85e7df156b
commit 87c69ed955

View file

@ -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);