Skip to content

Commit 8e80fe3

Browse files
authored
pleasing the CI, because I didn't think it'd be an issue and didn't double check (#2699)
1 parent f225eee commit 8e80fe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/practice/forth/.meta/proof.ci.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class Forth {
6767

6868
performCommand(command) {
6969
if (command.arity > this.stack.length) {
70-
if (this.stack.length == 1) {
70+
if (this.stack.length === 1) {
7171
throw new Error('Only one value on the stack');
7272
}
7373
throw new Error('Stack empty');

0 commit comments

Comments
 (0)