diff options
author | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-09-09 14:53:53 -0700 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-09-14 04:46:49 +0000 |
commit | d0a1775369fc8ff6d9b6197a38b93c7567823f96 (patch) | |
tree | 9ee97eab538c2fd94d721a0e36a3656535232dcf /Tests/LibJS | |
parent | 63c727a4a3414812aa1df50e700bda713f4039a4 (diff) | |
download | serenity-d0a1775369fc8ff6d9b6197a38b93c7567823f96.zip |
Everywhere: Fix a variety of typos
Spelling fixes found by `codespell`.
Diffstat (limited to 'Tests/LibJS')
-rw-r--r-- | Tests/LibJS/test262-runner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/LibJS/test262-runner.cpp b/Tests/LibJS/test262-runner.cpp index 31890b743d..f88dcc2fd3 100644 --- a/Tests/LibJS/test262-runner.cpp +++ b/Tests/LibJS/test262-runner.cpp @@ -502,7 +502,7 @@ static bool verify_test(Result<void, TestError>& result, TestMetadata const& met // has one. // The third test is the same as the second, upper module is fine but // import a module with SyntaxError, however here the phase is runtime. - // In conclusion all the test which would cause the inital module to not + // In conclusion all the test which would cause the initial module to not // be evaluated !should! have '$DONOTEVALUATE();' at the top causing a // Reference error, meaning we just ignore the phase in the SyntaxError case. return error.type == metadata.type; @@ -587,7 +587,7 @@ int main(int argc, char** argv) } if (timeout <= 0) { - warnln("timeout must be atleast 1"); + warnln("timeout must be at least 1"); return 2; } |