Skip to content

Commit 4ea7099

Browse files
committed
Fix spelling typo
1 parent c3d440f commit 4ea7099

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/easycoder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ const EasyCoder_Core = {
783783
run: program => {
784784
const command = program[program.pc];
785785
if (program.verifySymbol(command.label)) {
786-
program.programtack.push(program.pc + 1);
786+
program.programStack.push(program.pc + 1);
787787
return program.symbols[command.label].pc;
788788
}
789789
program.runtimeError(command.lino, `Unknown symbol '${command.label}'`);

js/easycoder/Core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ const EasyCoder_Core = {
783783
run: program => {
784784
const command = program[program.pc];
785785
if (program.verifySymbol(command.label)) {
786-
program.programtack.push(program.pc + 1);
786+
program.programStack.push(program.pc + 1);
787787
return program.symbols[command.label].pc;
788788
}
789789
program.runtimeError(command.lino, `Unknown symbol '${command.label}'`);

0 commit comments

Comments
 (0)