From a1d6b53acd05ae0c598f13c0e597b9daa342d35b Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Sun, 17 Oct 2021 20:04:44 +0900 Subject: [PATCH] docs(ext/http): fix typo in http/lib.rs (#12466) --- ext/http/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/http/lib.rs b/ext/http/lib.rs index 09874fccc1..f040ce1045 100644 --- a/ext/http/lib.rs +++ b/ext/http/lib.rs @@ -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![];