diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2021-10-17 20:04:44 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-17 20:04:44 +0900 |
commit | a1d6b53acd05ae0c598f13c0e597b9daa342d35b (patch) | |
tree | 028824bb70a849ad8f75c13a4b265ef215fb57d5 /ext/http/lib.rs | |
parent | 62f6865f7c8fa93cb994623bb1befa071e5ad4e8 (diff) |
docs(ext/http): fix typo in http/lib.rs (#12466)
Diffstat (limited to 'ext/http/lib.rs')
-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![]; |