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:
Mayukha Vadari
2026-01-07 16:30:35 -05:00
committed by GitHub
parent 2c37ef7762
commit 07ff532d30
95 changed files with 400 additions and 480 deletions

View File

@@ -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"),