Fixed Typos

This commit is contained in:
2022-10-02 10:49:10 +11:00
committed by GitHub
parent 9e09279b87
commit 84911dbb50
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ int hookStandard(Interpreter* interpreter, Literal identifier, Literal alias) {
{NULL, NULL}
};
//inject each native C functions into the current scope
//inject each native C functions into the current scope
for (int i = 0; natives[i].name; i++) {
injectNativeFn(interpreter, natives[i].name, natives[i].fn);
}