aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/fetch/headers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/net/fetch/headers.rs')
-rw-r--r--components/net/fetch/headers.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/net/fetch/headers.rs b/components/net/fetch/headers.rs
index 54fbe636f6f..3a29f841d64 100644
--- a/components/net/fetch/headers.rs
+++ b/components/net/fetch/headers.rs
@@ -2,11 +2,12 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
-use headers::HeaderMap;
-use net_traits::fetch::headers::get_value_from_header_list;
use std::iter::Peekable;
use std::str::Chars;
+use headers::HeaderMap;
+use net_traits::fetch::headers::get_value_from_header_list;
+
/// <https://fetch.spec.whatwg.org/#http-tab-or-space>
const HTTP_TAB_OR_SPACE: &[char] = &['\u{0009}', '\u{0020}'];