Merge pull request #853 from RazvanBugoi/master

Added missing semicolon
This commit is contained in:
Ilya Kantor 2019-03-20 16:04:06 +03:00 committed by GitHub
commit 66b5039220
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -163,7 +163,7 @@ switch (arg) {
alert( 'Never executes!' );
break;
default:
alert( 'An unknown value' )
alert( 'An unknown value' );
}
```