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

@@ -1149,7 +1149,7 @@ class ServerStatus_test : public beast::unit_test::suite,
doHTTPRequest(env, yield, false, resp, ec, to_string(jv));
BEAST_EXPECT(
resp.result() == boost::beast::http::status::bad_request);
BEAST_EXPECT(resp.body() == "params unparseable\r\n");
BEAST_EXPECT(resp.body() == "params unparsable\r\n");
}
{
@@ -1159,7 +1159,7 @@ class ServerStatus_test : public beast::unit_test::suite,
doHTTPRequest(env, yield, false, resp, ec, to_string(jv));
BEAST_EXPECT(
resp.result() == boost::beast::http::status::bad_request);
BEAST_EXPECT(resp.body() == "params unparseable\r\n");
BEAST_EXPECT(resp.body() == "params unparsable\r\n");
}
}