Skip to content

Commit 5c14e74

Browse files
authored
Merge pull request #294 from chriptus13/patch-1
Missing semicolon
2 parents 7d1d2df + 1600b73 commit 5c14e74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

problems/scope/problem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const a = 1; const b = 2; const c = 3;
5252
const a = 7; const c = 9;
5353

5454
(function fourthFunction () {
55-
const a = 1; const c = 8
55+
const a = 1; const c = 8;
5656
})()
5757
})()
5858
})()

0 commit comments

Comments
 (0)