From 541847d8b60238abe2468c7c99013f87a69122c3 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Fri, 25 Jan 2019 11:58:29 +0000 Subject: [PATCH] remoteSearch: Fix typos in log messages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I have this compulsion to rid the world of the typo ‘DBus’. Signed-off-by: Philip Withnall https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/1121 --- js/ui/remoteSearch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/remoteSearch.js b/js/ui/remoteSearch.js index 14cce88aa..62933f7ea 100644 --- a/js/ui/remoteSearch.js +++ b/js/ui/remoteSearch.js @@ -247,7 +247,7 @@ var RemoteSearchProvider = class { if (error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED)) return; - log('Received error from DBus search provider %s: %s'.format(this.id, String(error))); + log('Received error from D-Bus search provider %s: %s'.format(this.id, String(error))); callback([]); return; } @@ -274,7 +274,7 @@ var RemoteSearchProvider = class { _getResultMetasFinished(results, error, callback) { if (error) { if (!error.matches(Gio.IOErrorEnum, Gio.IOErrorEnum.CANCELLED)) - log('Received error from DBus search provider %s during GetResultMetas: %s'.format(this.id, String(error))); + log('Received error from D-Bus search provider %s during GetResultMetas: %s'.format(this.id, String(error))); callback([]); return; }