mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
fix(ext/fetch): fix error message of Request constructor (#10772)
This commit is contained in:
parent
a43d11fa32
commit
c00f9ad515
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@
|
|||
((init.body !== undefined && init.body !== null) ||
|
||||
inputBody !== null)
|
||||
) {
|
||||
throw new TypeError("HEAD and GET requests may not have a body.");
|
||||
throw new TypeError("Request with GET/HEAD method cannot have body.");
|
||||
}
|
||||
|
||||
// 34.
|
||||
|
|
Loading…
Reference in a new issue