diff options
-rw-r--r-- | ext/http/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/http/lib.rs b/ext/http/lib.rs index 09874fccc..f040ce104 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![]; |