From db608680012f8c85a5c12c1764a1a6eec2ec63c5 Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Sun, 13 Oct 2019 02:53:40 -0400 Subject: [PATCH] spelling: executable --- src/core/lib/FileSignatures.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/lib/FileSignatures.mjs b/src/core/lib/FileSignatures.mjs index 94cfc8b8..0e0a39ed 100644 --- a/src/core/lib/FileSignatures.mjs +++ b/src/core/lib/FileSignatures.mjs @@ -2463,7 +2463,7 @@ export function extractMZPE(bytes, offset) { const numSections = stream.readInt(2, "le"); // Read Optional Header Magic to determine the state of the image file - // 0x10b = normal exeuctable, 0x107 = ROM image, 0x20b = PE32+ executable + // 0x10b = normal executable, 0x107 = ROM image, 0x20b = PE32+ executable stream.moveForwardsBy(16); const optionalMagic = stream.readInt(2, "le"); const pe32Plus = optionalMagic === 0x20b;