aboutsummaryrefslogtreecommitdiff
path: root/src/test/util_tests.cpp
diff options
context:
space:
mode:
authorJon Atack <jon@atack.com>2022-02-17 12:54:39 +0100
committerJon Atack <jon@atack.com>2022-02-21 19:07:29 +0100
commit48742693acc9de837735674057c9aae2fe90bd1d (patch)
tree77aafdc1af1ed5016ef365e07dce7c63496d3aab /src/test/util_tests.cpp
parente670edd43441ecb6e5978d65348501c57d856030 (diff)
downloadbitcoin-48742693acc9de837735674057c9aae2fe90bd1d.tar.xz
Replace "can not" with "cannot" in docs, user messages, and tests
Diffstat (limited to 'src/test/util_tests.cpp')
-rw-r--r--src/test/util_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/util_tests.cpp b/src/test/util_tests.cpp
index 52b24327ec..d2638e221a 100644
--- a/src/test/util_tests.cpp
+++ b/src/test/util_tests.cpp
@@ -1286,7 +1286,7 @@ BOOST_AUTO_TEST_CASE(util_ParseMoney)
BOOST_CHECK_EQUAL(ParseMoney("0.00000001 ").value(), COIN/100000000);
BOOST_CHECK_EQUAL(ParseMoney(" 0.00000001").value(), COIN/100000000);
- // Parsing amount that can not be represented should fail
+ // Parsing amount that cannot be represented should fail
BOOST_CHECK(!ParseMoney("100000000.00"));
BOOST_CHECK(!ParseMoney("0.000000001"));