mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 10:35:50 +00:00
chore: Fix some typos in comments (#6040)
This commit is contained in:
2
external/secp256k1/include/secp256k1.h
vendored
2
external/secp256k1/include/secp256k1.h
vendored
@@ -541,7 +541,7 @@ SECP256K1_API int secp256k1_ecdsa_signature_serialize_compact(
|
||||
/** Verify an ECDSA signature.
|
||||
*
|
||||
* Returns: 1: correct signature
|
||||
* 0: incorrect or unparseable signature
|
||||
* 0: incorrect or unparsable signature
|
||||
* Args: ctx: pointer to a context object
|
||||
* In: sig: the signature being verified.
|
||||
* msghash32: the 32-byte message hash being verified.
|
||||
|
||||
@@ -159,7 +159,7 @@ public:
|
||||
@param count the number of items the slab allocator can allocate; note
|
||||
that a count of 0 is valid and means that the allocator
|
||||
is, effectively, disabled. This can be very useful in some
|
||||
contexts (e.g. when mimimal memory usage is needed) and
|
||||
contexts (e.g. when minimal memory usage is needed) and
|
||||
allows for graceful failure.
|
||||
*/
|
||||
constexpr explicit SlabAllocator(
|
||||
|
||||
@@ -546,7 +546,7 @@ operator<=>(base_uint<Bits, Tag> const& lhs, base_uint<Bits, Tag> const& rhs)
|
||||
// This comparison might seem wrong on a casual inspection because it
|
||||
// compares data internally stored as std::uint32_t byte-by-byte. But
|
||||
// note that the underlying data is stored in big endian, even if the
|
||||
// plaform is little endian. This makes the comparison correct.
|
||||
// platform is little endian. This makes the comparison correct.
|
||||
//
|
||||
// FIXME: use std::lexicographical_compare_three_way once support is
|
||||
// added to MacOS.
|
||||
|
||||
@@ -9,7 +9,7 @@ namespace ripple {
|
||||
|
||||
/*
|
||||
* MSVC 2019 version 16.9.0 added [[nodiscard]] to the std comparison
|
||||
* operator() functions. boost::bimap checks that the comparitor is a
|
||||
* operator() functions. boost::bimap checks that the comparator is a
|
||||
* BinaryFunction, in part by calling the function and ignoring the value.
|
||||
* These two things don't play well together. These wrapper classes simply
|
||||
* strip [[nodiscard]] from operator() for use in boost::bimap.
|
||||
|
||||
@@ -39,7 +39,7 @@ public:
|
||||
|
||||
The argument string is available to suites and
|
||||
allows for customization of the test. Each suite
|
||||
defines its own syntax for the argumnet string.
|
||||
defines its own syntax for the argument string.
|
||||
The same argument is passed to all suites.
|
||||
*/
|
||||
void
|
||||
|
||||
@@ -966,8 +966,8 @@ class PermissionedDEX_test : public beast::unit_test::suite
|
||||
{
|
||||
testcase("Remove unfunded offer");
|
||||
|
||||
// checking that an unfunded offer will be implictly removed by a
|
||||
// successfuly payment tx
|
||||
// checking that an unfunded offer will be implicitly removed by a
|
||||
// successful payment tx
|
||||
Env env(*this, features);
|
||||
auto const& [gw, domainOwner, alice, bob, carol, USD, domainID, credType] =
|
||||
PermissionedDEX(env);
|
||||
|
||||
@@ -1740,7 +1740,7 @@ private:
|
||||
// locals[0]: from 0 to maxKeys - 4
|
||||
// locals[1]: from 1 to maxKeys - 2
|
||||
// locals[2]: from 2 to maxKeys
|
||||
// interesection of at least 2: same as locals[1]
|
||||
// intersection of at least 2: same as locals[1]
|
||||
// intersection when 1 is dropped: from 2 to maxKeys - 4
|
||||
constexpr static int publishers = 3;
|
||||
std::array<
|
||||
|
||||
@@ -49,7 +49,7 @@ public:
|
||||
.first;
|
||||
|
||||
if (valid != Validity::Valid)
|
||||
fail("Non-Fully canoncial signature was not permitted");
|
||||
fail("Non-Fully canonical signature was not permitted");
|
||||
}
|
||||
|
||||
{
|
||||
@@ -63,7 +63,7 @@ public:
|
||||
fully_canonical.app().config())
|
||||
.first;
|
||||
if (valid == Validity::Valid)
|
||||
fail("Non-Fully canoncial signature was permitted");
|
||||
fail("Non-Fully canonical signature was permitted");
|
||||
}
|
||||
|
||||
pass();
|
||||
|
||||
@@ -1183,7 +1183,7 @@ r.ripple.com:51235
|
||||
BEAST_EXPECT(cfg.IPS_FIXED[6] == "12.34.12.123 12345");
|
||||
BEAST_EXPECT(cfg.IPS_FIXED[7] == "12.34.12.123 12345");
|
||||
|
||||
// all ipv6 should be ignored by colon replacer, howsoever formated
|
||||
// all ipv6 should be ignored by colon replacer, howsoever formatted
|
||||
BEAST_EXPECT(cfg.IPS_FIXED[8] == "::");
|
||||
BEAST_EXPECT(cfg.IPS_FIXED[9] == "2001:db8::");
|
||||
BEAST_EXPECT(cfg.IPS_FIXED[10] == "::1");
|
||||
|
||||
@@ -79,7 +79,7 @@ public:
|
||||
void
|
||||
testSQLiteFileNames()
|
||||
{
|
||||
// confirm that files are given the correct exensions
|
||||
// confirm that files are given the correct extensions
|
||||
testcase("sqliteFileNames");
|
||||
BasicConfig c;
|
||||
setupSQLiteConfig(c, getDatabasePath());
|
||||
|
||||
@@ -243,7 +243,7 @@ struct XRP_t
|
||||
}
|
||||
|
||||
/** Returns an amount of XRP as PrettyAmount,
|
||||
which is trivially convertable to STAmount
|
||||
which is trivially convertible to STAmount
|
||||
|
||||
@param v The number of XRP (not drops)
|
||||
*/
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
namespace ripple {
|
||||
namespace test {
|
||||
|
||||
// frequently used macros defined here for convinience.
|
||||
// frequently used macros defined here for convenience.
|
||||
#define PORT_WS "port_ws"
|
||||
#define PORT_RPC "port_rpc"
|
||||
#define PORT_PEER "port_peer"
|
||||
|
||||
@@ -227,7 +227,7 @@ public:
|
||||
BEAST_EXPECT(!c->load(s4));
|
||||
|
||||
// Check if we properly terminate when we encounter
|
||||
// a malformed or unparseable entry:
|
||||
// a malformed or unparsable entry:
|
||||
auto const node1 = randomNode();
|
||||
auto const node2 = randomNode();
|
||||
|
||||
|
||||
@@ -176,7 +176,7 @@ public:
|
||||
// DEPRECATED public data members
|
||||
|
||||
// Tells us if we checked the connection. Outbound connections
|
||||
// are always considered checked since we successfuly connected.
|
||||
// are always considered checked since we successfully connected.
|
||||
bool checked;
|
||||
|
||||
// Set to indicate if the connection can receive incoming at the
|
||||
|
||||
Reference in New Issue
Block a user