Skip to content

Commit

Permalink
docs(ext/http): fix typo in http/lib.rs (denoland#12466)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltociear committed Oct 17, 2021
1 parent 62f6865 commit a1d6b53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/http/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ fn req_headers(
) -> Vec<(ByteString, ByteString)> {
// 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
// headers and concat them into a single cookie header, seperated by
// headers and concat them into a single cookie header, separated by
// semicolons.
let cookie_sep = "; ".as_bytes();
let mut cookies = vec![];
Expand Down

0 comments on commit a1d6b53

Please sign in to comment.