[Libreoffice-commits] core.git: o3tl/qa

dennisroczek dennisroczek at libreoffice.org
Tue Mar 14 06:37:15 UTC 2017


 o3tl/qa/test-lru_map.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f6678c297b3eb119a928344792951886d1d6ca53
Author: dennisroczek <dennisroczek at libreoffice.org>
Date:   Mon Mar 13 12:07:28 2017 +0000

    fix typo: alreay --> already
    
    Change-Id: Iabb8588a2547c925c2c959f3b4831c89935a9529
    Reviewed-on: https://gerrit.libreoffice.org/35133
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
    Tested-by: Noel Grandin <noel.grandin at collabora.co.uk>

diff --git a/o3tl/qa/test-lru_map.cxx b/o3tl/qa/test-lru_map.cxx
index abd9cb2..b985966 100644
--- a/o3tl/qa/test-lru_map.cxx
+++ b/o3tl/qa/test-lru_map.cxx
@@ -78,7 +78,7 @@ void lru_map_test::testReplaceValue()
     CPPUNIT_ASSERT_EQUAL(size_t(1), lru.size());
     CPPUNIT_ASSERT_EQUAL(2, lru.find(1)->second);
 
-    // inserting new entry with key that alreay exists
+    // inserting new entry with key that already exists
     lru.insert(std::make_pair<int, int>(1, 4));
     CPPUNIT_ASSERT_EQUAL(size_t(1), lru.size());
     CPPUNIT_ASSERT_EQUAL(4, lru.find(1)->second);
@@ -91,7 +91,7 @@ void lru_map_test::testReplaceValue()
 
     // check if insert with same key, moves the entry back of the lru queu
 
-    // inserting new entry with key that alreay exists
+    // inserting new entry with key that already exists
     lru.insert(std::make_pair<int, int>(1, 6));
     // inserting new entry, lru removed
     lru.insert(std::make_pair<int, int>(3, 300));


More information about the Libreoffice-commits mailing list