aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rw-r--r--src/dash-entry.vala2
-rw-r--r--src/menubar.vala2
-rw-r--r--tests/test.vala10
4 files changed, 8 insertions, 8 deletions
diff --git a/NEWS b/NEWS
index 255bc09..8692369 100644
--- a/NEWS
+++ b/NEWS
@@ -45,7 +45,7 @@ Overview of changes in arctica-greeter 0.99.1.0
- Make guest session configurable by the host admin.
- Start using Remote Logon APIv5.
- - Screen size calulation fix.
+ - Screen size calculation fix.
Overview of changes in arctica-greeter 0.99.0.4
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.
diff --git a/tests/test.vala b/tests/test.vala
index e90b29e..b129bfd 100644
--- a/tests/test.vala
+++ b/tests/test.vala
@@ -38,7 +38,7 @@ public class Test
}
}
- // BEGIN This group of functions asume email/password for remote directory servers
+ // BEGIN This group of functions assume email/password for remote directory servers
private static DashEntry remote_directory_entry_email_field (TestList list)
{
var fixed = list.selected_entry.get_child() as Gtk.Fixed;
@@ -52,9 +52,9 @@ public class Test
var grid = fixed.get_children().nth_data(1) as Gtk.Grid;
return grid.get_child_at(1, 2) as DashEntry;
}
- // END This group of functions asume email/password for remote directory servers
+ // END This group of functions assume email/password for remote directory servers
- // BEGIN This group of functions asume domain/username/password for remote login servers
+ // BEGIN This group of functions assume domain/username/password for remote login servers
private static DashEntry remote_login_entry_domain_field (TestList list)
{
var fixed = list.selected_entry.get_child() as Gtk.Fixed;
@@ -75,7 +75,7 @@ public class Test
var grid = fixed.get_children().nth_data(1) as Gtk.Grid;
return grid.get_child_at(1, 3) as DashEntry;
}
- // BEGIN This group of functions asume domain/username/password for remote login servers
+ // BEGIN This group of functions assume domain/username/password for remote login servers
private static void do_scroll (TestList list, GreeterList.ScrollTarget direction)
{
@@ -703,7 +703,7 @@ public class Test
MainWindow mw = setup ();
TestList list = mw.stack.top () as TestList;
- /* don't go too fast, otherwise the lastest gdk3 will lose control... */
+ /* don't go too fast, otherwise the latest gdk3 will lose control... */
Posix.sleep(1);
/* Wait for Remote Login to appear */