File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
manual/en-US/coding-standards/chapters Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ for ( prop in object ) {
9090
9191#### Exceptions
9292
93- ** First or only argument is an object, array or callback function.**
93+ ** First or only argument is an object, array or callback function.**
9494
9595** No space before the first argument:**
9696
@@ -109,8 +109,6 @@ foo(function() {
109109
110110** Function with a callback, object, or array as the last argument:**
111111
112- ```
113-
114112** No space after the last argument:**
115113
116114```
@@ -214,7 +212,7 @@ var baz = 'qux';
214212
215213```
216214var foo = 'bar',
217- bar = 'baz',
215+ bar = 'baz',
218216 baz = 'qux';
219217```
220218
@@ -420,7 +418,10 @@ if ( test ) {
420418- Place above the code it refers to.
421419- A space between double forward slashes and comment text.
422420
423- `// I am a single line comment.`
421+ ```
422+ // I am a single line comment.
423+ ```
424+
424425
425426** Multiline**
426427
@@ -447,4 +448,4 @@ if ( test ) {
447448** With help from:**
448449
449450- [ jQuery JS Style Guide] ( https://contribute.jquery.org/style-guide/js )
450- - [Idiomatic JS](https://github.com/rwaldron/idiomatic.js)
451+ - [ Idiomatic JS] ( https://github.com/rwaldron/idiomatic.js )
You can’t perform that action at this time.
0 commit comments