Skip to content

Commit 09d223f

Browse files
authored
Update Debugging1stSyntaxError.js
1 parent 59b114d commit 09d223f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

errors-and-debugging/exercises/Debugging1stSyntaxError.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
let launchReady = false;
55
let fuelLevel = 17000;
66

7-
if (fuelLevel >= 20000 {
7+
if (fuelLevel >= 20000) {
88
console.log('Fuel level cleared.');
99
launchReady = true;
1010
} else {
1111
console.log('WARNING: Insufficient fuel!');
1212
launchReady = false;
13-
}
13+
}

0 commit comments

Comments
 (0)