Skip to content

Commit 318b044

Browse files
authored
Merge pull request felixge#92 from faheel/patch-1
Make heading levels consistent
2 parents 4677ccf + afe1b78 commit 318b044

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ while (keys.length) {
167167

168168
[crockfordconvention]: http://javascript.crockford.com/code.html
169169

170-
### Naming Conventions
170+
## Naming Conventions
171171

172172
### Use lowerCamelCase for variables, properties and function names
173173

@@ -205,7 +205,7 @@ function bank_Account() {
205205
}
206206
```
207207

208-
## Use UPPERCASE for Constants
208+
### Use UPPERCASE for Constants
209209

210210
Constants should be declared as regular variables or static class properties,
211211
using all uppercase letters.
@@ -446,7 +446,7 @@ User
446446
.exec(function(err, user) {
447447
return true;
448448
});
449-
````
449+
```
450450

451451
*Wrong:*
452452

@@ -473,7 +473,7 @@ User.findOne({ name: 'foo' }).populate('bar')
473473
.exec(function(err, user) {
474474
return true;
475475
});
476-
````
476+
```
477477

478478
## Comments
479479

0 commit comments

Comments
 (0)