From f6678c297b3eb119a928344792951886d1d6ca53 Mon Sep 17 00:00:00 2001 From: dennisroczek Date: Mon, 13 Mar 2017 12:07:28 +0000 Subject: fix typo: alreay --> already Change-Id: Iabb8588a2547c925c2c959f3b4831c89935a9529 Reviewed-on: https://gerrit.libreoffice.org/35133 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- o3tl/qa/test-lru_map.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'o3tl/qa') diff --git a/o3tl/qa/test-lru_map.cxx b/o3tl/qa/test-lru_map.cxx index abd9cb237bb9..b985966f43d2 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(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(1, 6)); // inserting new entry, lru removed lru.insert(std::make_pair(3, 300)); -- cgit