[naming conventions] fixes #15

This commit is contained in:
Harrison Shoff
2012-11-05 15:48:53 -08:00
parent 4400753ac1
commit 92fa3c7f73

View File

@@ -876,7 +876,7 @@
```javascript
// bad
function user(options){
function user(options) {
this.name = options.name;
}
@@ -885,7 +885,7 @@
});
// good
function User(options){
function User(options) {
this.name = options.name;
}