aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/dash-entry.vala2
-rw-r--r--src/menubar.vala2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/dash-entry.vala b/src/dash-entry.vala
index 4bd8982..526b631 100644
--- a/src/dash-entry.vala
+++ b/src/dash-entry.vala
@@ -298,7 +298,7 @@ public class DashEntry : Gtk.Entry, Fadable
public override bool key_press_event (Gdk.EventKey event)
{
- // This is a workaroud for bug https://launchpad.net/bugs/944159
+ // This is a workaround for bug https://launchpad.net/bugs/944159
// The problem is that orca seems to not notice that it's in a password
// field on startup. We just need to kick orca in the pants.
if (ArcticaGreeter.singleton.orca_needs_kick)
diff --git a/src/menubar.vala b/src/menubar.vala
index e5c47c9..a2b6b99 100644
--- a/src/menubar.vala
+++ b/src/menubar.vala
@@ -472,7 +472,7 @@ public class MenuBar : Gtk.MenuBar
SpawnFlags.SEARCH_PATH,
null,
out reader_pid);
- // This is a workaroud for bug https://launchpad.net/bugs/944159
+ // This is a workaround for bug https://launchpad.net/bugs/944159
// The problem is that orca seems to not notice that it's in a
// password field on startup. We just need to kick orca in the
// pants. We do this two ways: a racy way and a non-racy way.