diff --git a/HashRouter__test_8cpp_source.html b/HashRouter__test_8cpp_source.html index c456ed82dc..08743cc337 100644 --- a/HashRouter__test_8cpp_source.html +++ b/HashRouter__test_8cpp_source.html @@ -448,7 +448,7 @@ $(document).ready(function() { init_codefold(0); });
349 h.set("hold_time", "alice");
350 h.set("relay_time", "bob");
351 auto const setup = setup_HashRouter(cfg);
-
352 // The set function ignores values that don't covert, so the
+
352 // The set function ignores values that don't convert, so the
353 // defaults are left unchanged
354 BEAST_EXPECT(setup.holdTime == 300s);
355 BEAST_EXPECT(setup.relayTime == 30s);
diff --git a/IntrusiveShared__test_8cpp_source.html b/IntrusiveShared__test_8cpp_source.html index 53831fbda2..79df626cb6 100644 --- a/IntrusiveShared__test_8cpp_source.html +++ b/IntrusiveShared__test_8cpp_source.html @@ -468,7 +468,7 @@ $(document).ready(function() { init_codefold(0); });
396 // This checks that partialDelete has run to completion
397 // before the destructor is called. A sleep is inserted
398 // inside the partial delete to make sure the destructor is
-
399 // given an opportunity to run durring partial delete.
+
399 // given an opportunity to run during partial delete.
400 BEAST_EXPECT(cur == partiallyDeleted);
401 }
402 if (next == partiallyDeletedStarted)
diff --git a/MPToken__test_8cpp_source.html b/MPToken__test_8cpp_source.html index 9ccecbf84a..2c3643dac9 100644 --- a/MPToken__test_8cpp_source.html +++ b/MPToken__test_8cpp_source.html @@ -2766,7 +2766,7 @@ $(document).ready(function() { init_codefold(0); });
2651 STAmount const amt3{asset3, 10'000};
2652
2653 {
-
2654 testcase("Test STAmount MPT arithmetics");
+
2654 testcase("Test STAmount MPT arithmetic");
2655 using namespace std::string_literals;
2656 STAmount res = multiply(amt1, amt2, asset3);
2657 BEAST_EXPECT(res == amt3);
@@ -2803,7 +2803,7 @@ $(document).ready(function() { init_codefold(0); });
2688 }
2689
2690 {
-
2691 testcase("Test MPTAmount arithmetics");
+
2691 testcase("Test MPTAmount arithmetic");
2692 MPTAmount mptAmt1{100};
2693 MPTAmount const mptAmt2{100};
2694 BEAST_EXPECT((mptAmt1 += mptAmt2) == MPTAmount{200});
diff --git a/MultiSign__test_8cpp_source.html b/MultiSign__test_8cpp_source.html index 7f5805961b..da9e77d622 100644 --- a/MultiSign__test_8cpp_source.html +++ b/MultiSign__test_8cpp_source.html @@ -809,7 +809,7 @@ $(document).ready(function() { init_codefold(0); });
709 testHeterogeneousSigners(FeatureBitset features)
710 {
-
711 testcase("Heterogenous Signers");
+
711 testcase("Heterogeneous Signers");
712
713 using namespace jtx;
714 Env env{*this, features};
diff --git a/SecretKey_8cpp_source.html b/SecretKey_8cpp_source.html index 4f3e60ecca..be340bc25d 100644 --- a/SecretKey_8cpp_source.html +++ b/SecretKey_8cpp_source.html @@ -171,7 +171,7 @@ $(document).ready(function() { init_codefold(0); });
77 std::array<std::uint8_t, 20> buf;
78 std::copy(seed.begin(), seed.end(), buf.begin());
79
-
80 // The odds that this loop executes more than once are neglible
+
80 // The odds that this loop executes more than once are negligible
81 // but *just* in case someone managed to generate a key that required
82 // more iterations loop a few times.
83 for (std::uint32_t seq = 0; seq != 128; ++seq)
@@ -216,7 +216,7 @@ $(document).ready(function() { init_codefold(0); });
137 std::copy(generator_.begin(), generator_.end(), buf.begin());
138 copy_uint32(buf.data() + 33, seq);
139
-
140 // The odds that this loop executes more than once are neglible
+
140 // The odds that this loop executes more than once are negligible
141 // but we impose a maximum limit just in case.
142 for (std::uint32_t subseq = 0; subseq != 128; ++subseq)
143 {