aboutsummaryrefslogtreecommitdiff
path: root/src/test/limitedmap_tests.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-11-29 11:12:39 +0100
committerMarcoFalke <falke.marco@gmail.com>2016-11-29 11:13:57 +0100
commit7bd1aa566fb4a4fe194f209085649f2c722b0cff (patch)
tree2456ea0d0cb68365b149524b4876d9b1b4828c37 /src/test/limitedmap_tests.cpp
parentc4522e71c7e1d8ecfd70112e9375b9d00d6733a8 (diff)
parent15fa95d7e576041a20d47907356a2be5a327b4ca (diff)
downloadbitcoin-7bd1aa566fb4a4fe194f209085649f2c722b0cff.tar.xz
Merge #9233: Fix some typos
15fa95d Fix some typos (fsb4000)
Diffstat (limited to 'src/test/limitedmap_tests.cpp')
-rw-r--r--src/test/limitedmap_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/limitedmap_tests.cpp b/src/test/limitedmap_tests.cpp
index faaddffad8..e3531486aa 100644
--- a/src/test/limitedmap_tests.cpp
+++ b/src/test/limitedmap_tests.cpp
@@ -47,7 +47,7 @@ BOOST_AUTO_TEST_CASE(limitedmap_test)
// make sure the item is present
BOOST_CHECK(map.count(i) == 1);
- // use the iterator to check for the expected key adn value
+ // use the iterator to check for the expected key and value
BOOST_CHECK(it->first == i);
BOOST_CHECK(it->second == i + 1);