Skip to content

Commit 1416bf5

Browse files
committed
Fix typos in error messages
1 parent cd6250d commit 1416bf5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NotificationsManager.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ public class Gala.NotificationsManager : GLib.Object {
3030
try {
3131
notifications = ((DBusConnection) obj).get_proxy.end<DBusNotifications> (res);
3232
} catch (Error e) {
33-
warning ("NotificationManager: Couldn't connect to notifications server: %s", e.message);
33+
warning ("NotificationsManager: Couldn't connect to notifications server: %s", e.message);
3434
notifications = null;
3535
}
3636
}
3737
);
3838
}
3939

4040
private void on_unwatch (DBusConnection conn) {
41-
warning ("NotificationManager: Lost connection to notifications server");
41+
warning ("NotificationsManager: Lost connection to notifications server");
4242
notifications = null;
4343
}
4444

0 commit comments

Comments
 (0)