mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-23 15:20:54 +00:00
refactor: Fix spelling issues in all variables/functions (#6184)
This change fixes many typos in comments, variables, and public functions. There is no functionality change.
This commit is contained in:
@@ -33,7 +33,7 @@ public:
|
||||
{
|
||||
using namespace jtx;
|
||||
{
|
||||
Account a("chenna");
|
||||
Account a("chad");
|
||||
Account b(a);
|
||||
a = b;
|
||||
a = std::move(b);
|
||||
@@ -162,8 +162,8 @@ public:
|
||||
// flags
|
||||
env.fund(n, noripple("xavier"));
|
||||
env.require(nflags("xavier", asfDefaultRipple));
|
||||
env.fund(n, "yana");
|
||||
env.require(flags("yana", asfDefaultRipple));
|
||||
env.fund(n, "zachary");
|
||||
env.require(flags("zachary", asfDefaultRipple));
|
||||
}
|
||||
|
||||
// trust
|
||||
@@ -596,12 +596,9 @@ public:
|
||||
using namespace jtx;
|
||||
Env env(*this);
|
||||
env.fund(XRP(10000), "alice");
|
||||
env(noop("alice"), memodata("data"));
|
||||
env(noop("alice"), memoformat("format"));
|
||||
env(noop("alice"), memotype("type"));
|
||||
env(noop("alice"), memondata("format", "type"));
|
||||
env(noop("alice"), memonformat("data", "type"));
|
||||
env(noop("alice"), memontype("data", "format"));
|
||||
env(noop("alice"), memo_data("data"));
|
||||
env(noop("alice"), memo_format("format"));
|
||||
env(noop("alice"), memo_type("type"));
|
||||
env(noop("alice"), memo("data", "format", "type"));
|
||||
env(noop("alice"),
|
||||
memo("data1", "format1", "type1"),
|
||||
|
||||
Reference in New Issue
Block a user