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 <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
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

+1-1
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)