From 34dd052f747f730670c112b4ee69b6550b197eca Mon Sep 17 00:00:00 2001 From: belliash Date: Tue, 7 Aug 2018 19:45:34 +0200 Subject: [PATCH] quick typo fix --- engine/vm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/vm.c b/engine/vm.c index be95720..320b6c1 100644 --- a/engine/vm.c +++ b/engine/vm.c @@ -7348,7 +7348,7 @@ PH7_PRIVATE sxi32 PH7_VmCallClassMethod( SyBlobAppend(&aStack[i].sBlob, (const void *)SyStringData(&pMethod->sVmName), SyStringLength(&pMethod->sVmName)); aStack[i].iFlags = MEMOBJ_STRING; aStack[i].nIdx = SXU32_HIGH; - /* Emit the CALL istruction */ + /* Emit the CALL instruction */ aInstr[0].iOp = PH7_OP_CALL; aInstr[0].iP1 = nArg; /* Total number of given arguments */ aInstr[0].iP2 = 0; @@ -7480,7 +7480,7 @@ PH7_PRIVATE sxi32 PH7_VmCallUserFunction( return PH7_OK; } /* - * Call a user defined or foreign function with a varible number + * Call a user defined or foreign function with a variable number * of arguments where the name of the function is stored in the pFunc * parameter. * Return SXRET_OK if the function was successfully called.Any other