Skip to content

Commit 7e047df

Browse files
deokjinkimtargos
authored andcommitted
doc: fix wrong output of example in util
In `mime.type` of util, `application/javascript` is actual output, but described as `application/javascript/javascript`. PR-URL: #45825 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent faee973 commit 7e047df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api/util.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,7 @@ myMIME.type = 'application';
11071107
console.log(myMIME.type);
11081108
// Prints: application
11091109
console.log(String(myMIME));
1110-
// Prints: application/javascript/javascript
1110+
// Prints: application/javascript
11111111
```
11121112

11131113
#### `mime.subtype`

0 commit comments

Comments
 (0)