Skip to content

Commit 5f7b42f

Browse files
Fix content formatting/placement
1 parent d4283ac commit 5f7b42f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

manual/en-US/coding-standards/chapters/javascript.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ foo(function() {
109109

110110
**Function with a callback, object, or array as the last argument:**
111111

112-
**No space after the last argument:**
112+
No space after the last argument.
113113

114114
```
115115
foo( data, function() {
@@ -378,15 +378,14 @@ if ( condition &&
378378

379379
Use strict equality operator === so that type is considered in comparison. Using == can produce false positives.
380380

381-
// evaluates true
382381

383382
```
383+
// evaluates true
384384
1 == "1"
385385
```
386386

387-
// evaluates false
388-
389387
```
388+
// evaluates false
390389
1 === "1"
391390
```
392391

0 commit comments

Comments
 (0)