Skip to content

Commit 9ae3e2a

Browse files
committed
[MERGE chakra-core#3556 @jsoref] Fix spelling of variable names in WebAssemblyModule.cpp
Merge pull request chakra-core#3556 from jsoref:spelling-internals followup to chakra-core#227 Note: I haven't rerun my tool against the current corpus, this is all work from when I made my original pass (I just never got around to proposing the other items in my series.)
2 parents e120bba + a1cc5d8 commit 9ae3e2a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/Runtime/Library/WebAssemblyModule.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ WebAssemblyModule::ValidateModule(
291291
{
292292
CONFIG_FLAG(MaxAsmJsInterpreterRunCount) = 0;
293293
AsmJsScriptFunction * funcObj = scriptContext->GetLibrary()->CreateAsmJsScriptFunction(body);
294-
FunctionEntryPointInfo * entypointInfo = (FunctionEntryPointInfo*)funcObj->GetEntryPointInfo();
295-
entypointInfo->SetIsAsmJSFunction(true);
294+
FunctionEntryPointInfo * entrypointInfo = (FunctionEntryPointInfo*)funcObj->GetEntryPointInfo();
295+
entrypointInfo->SetIsAsmJSFunction(true);
296296
GenerateFunction(scriptContext->GetNativeCodeGenerator(), body, funcObj);
297297
}
298298
#endif

0 commit comments

Comments
 (0)