summaryrefslogtreecommitdiff
path: root/editeng
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2023-12-28 06:25:59 +0100
committerJulien Nabet <serval2412@yahoo.fr>2023-12-28 10:44:53 +0100
commit9cf4e435c4131fbfeb241d8f5d73b8b300041b79 (patch)
tree2a103fda313f8790dd0123802f4461043733fd89 /editeng
parent4904da4ba40c0ca1a77ef0e6f0df6ce68a147029 (diff)
Fix typo
Change-Id: Ie4af9884dca493646636dc60a1605a748d50ad1a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161376 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'editeng')
-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 ">"