summaryrefslogtreecommitdiff
path: root/editeng/qa/unit/ESelectionTest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'editeng/qa/unit/ESelectionTest.cxx')
-rw-r--r--editeng/qa/unit/ESelectionTest.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/qa/unit/ESelectionTest.cxx b/editeng/qa/unit/ESelectionTest.cxx
index 2d1f1a807229..27b9256b29d7 100644
--- a/editeng/qa/unit/ESelectionTest.cxx
+++ b/editeng/qa/unit/ESelectionTest.cxx
@@ -115,7 +115,7 @@ CPPUNIT_TEST_FIXTURE(ESelectionTest, testLess)
// Obviously not less
CPPUNIT_ASSERT_EQUAL(false, ESelection(0, 2, 0, 2) < ESelection(0, 1, 0, 1));
- // Equal at a point therfore not strictly "<"
+ // Equal at a point therefore not strictly "<"
CPPUNIT_ASSERT_EQUAL(false, ESelection(0, 0, 0, 0) < ESelection(0, 0, 0, 1));
// Strictly "<"
@@ -134,7 +134,7 @@ CPPUNIT_TEST_FIXTURE(ESelectionTest, testGreater)
// Obviously not greater
CPPUNIT_ASSERT_EQUAL(false, ESelection(0, 1, 0, 1) > ESelection(0, 2, 0, 2));
- // Equal at a point therfore not strictly ">"
+ // Equal at a point therefore not strictly ">"
CPPUNIT_ASSERT_EQUAL(false, ESelection(0, 0, 0, 1) > ESelection(0, 0, 0, 0));
// Strictly ">"