Everywhere: Fix even more typos

This commit is contained in:
Viktor Szépe 2025-08-26 11:00:23 +00:00 committed by Jelle Raaijmakers
commit 1c01e183b7
Notes: github-actions[bot] 2025-08-27 06:49:03 +00:00
31 changed files with 43 additions and 43 deletions

View file

@ -1,14 +0,0 @@
<!DOCTYPE html>
<script src="../include.js"></script>
<script>
asyncTest(async (done) => {
const blob = new Blob(["This is some data to be read! 🦬"]);
const uint8Array = await blob.bytes();
const string = new TextDecoder().decode(uint8Array);
if (string === "This is some data to be read! 🦬")
println("PASS");
else
println("FAIL");
done();
});
</script>