Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c7683b6

Browse files
committedMar 13, 2019
Added missing semicolon
1 parent 364e707 commit c7683b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎1-js/02-first-steps/13-switch/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ switch (arg) {
163163
alert( 'Never executes!' );
164164
break;
165165
default:
166-
alert( 'An unknown value' )
166+
alert( 'An unknown value' );
167167
}
168168
```
169169

0 commit comments

Comments
 (0)
Please sign in to comment.