Skip to content

Commit 12df1f5

Browse files
committed
Remove ; from function endings
1 parent 5a6dc7c commit 12df1f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1022,14 +1022,14 @@
10221022
// bad
10231023
var OBJEcttsssss = {};
10241024
var this_is_my_object = {};
1025-
function c() {};
1025+
function c() {}
10261026
var u = new user({
10271027
name: 'Bob Parr'
10281028
});
10291029
10301030
// good
10311031
var thisIsMyObject = {};
1032-
function thisIsMyFunction() {};
1032+
function thisIsMyFunction() {}
10331033
var user = new User({
10341034
name: 'Bob Parr'
10351035
});

0 commit comments

Comments
 (0)