Skip to content

Commit 2146a12

Browse files
committed
getting started: fixing code typo, closes getify#1528
1 parent 050733c commit 2146a12

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: getting-started/ch1.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,12 @@ This is how the code would look in the source code tree for that application. Bu
215215
var x$0;
216216
var x$1;
217217
if (something) {
218-
x$1 = 3;
219-
console.log(x$1);
218+
x$0 = 3;
219+
console.log(x$0);
220220
}
221221
else {
222-
x$2 = 4;
223-
console.log(x$2);
222+
x$1 = 4;
223+
console.log(x$1);
224224
}
225225
```
226226

0 commit comments

Comments
 (0)