Skip to content

Commit 92fa3c7

Browse files
committed
[naming conventions] fixes airbnb#15
1 parent 4400753 commit 92fa3c7

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
@@ -876,7 +876,7 @@
876876

877877
```javascript
878878
// bad
879-
function user(options){
879+
function user(options) {
880880
this.name = options.name;
881881
}
882882
@@ -885,7 +885,7 @@
885885
});
886886
887887
// good
888-
function User(options){
888+
function User(options) {
889889
this.name = options.name;
890890
}
891891

0 commit comments

Comments
 (0)