mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00
docs(ext/http): fix typo in http/lib.rs (#12466)
This commit is contained in:
parent
62f6865f7c
commit
a1d6b53acd
1 changed files with 1 additions and 1 deletions
|
@ -300,7 +300,7 @@ fn req_headers(
|
||||||
) -> Vec<(ByteString, ByteString)> {
|
) -> Vec<(ByteString, ByteString)> {
|
||||||
// We treat cookies specially, because we don't want them to get them
|
// We treat cookies specially, because we don't want them to get them
|
||||||
// mangled by the `Headers` object in JS. What we do is take all cookie
|
// mangled by the `Headers` object in JS. What we do is take all cookie
|
||||||
// headers and concat them into a single cookie header, seperated by
|
// headers and concat them into a single cookie header, separated by
|
||||||
// semicolons.
|
// semicolons.
|
||||||
let cookie_sep = "; ".as_bytes();
|
let cookie_sep = "; ".as_bytes();
|
||||||
let mut cookies = vec![];
|
let mut cookies = vec![];
|
||||||
|
|
Loading…
Add table
Reference in a new issue