Skip to content

Commit 242cb0c

Browse files
authored
fix typo in dialog box (#618)
1 parent c523f51 commit 242cb0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

auto_cpufreq/gui/objects.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def _remove_daemon(self, MenuItem, parent):
194194
transient_for=parent,
195195
message_type=Gtk.MessageType.INFO,
196196
buttons=Gtk.ButtonsType.OK,
197-
text="Daemon succesfully removed"
197+
text="Daemon successfully removed"
198198
)
199199
dialog.format_secondary_text("The app will now close. Please reopen to apply changes")
200200
dialog.run()
@@ -299,7 +299,7 @@ def install_daemon(self, button, parent):
299299
transient_for=parent,
300300
message_type=Gtk.MessageType.INFO,
301301
buttons=Gtk.ButtonsType.OK,
302-
text="Daemon succesfully installed"
302+
text="Daemon successfully installed"
303303
)
304304
dialog.format_secondary_text("The app will now close. Please reopen to apply changes")
305305
dialog.run()
@@ -314,4 +314,4 @@ def install_daemon(self, button, parent):
314314
)
315315
dialog.format_secondary_text(f"The following error occured:\n{e}")
316316
dialog.run()
317-
dialog.destroy()
317+
dialog.destroy()

0 commit comments

Comments
 (0)