aboutsummaryrefslogtreecommitdiffstats
path: root/components/shared/net/fetch
diff options
context:
space:
mode:
Diffstat (limited to 'components/shared/net/fetch')
-rw-r--r--components/shared/net/fetch/headers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/shared/net/fetch/headers.rs b/components/shared/net/fetch/headers.rs
index ae95066bcf5..14caf03eea8 100644
--- a/components/shared/net/fetch/headers.rs
+++ b/components/shared/net/fetch/headers.rs
@@ -14,5 +14,5 @@ pub fn get_value_from_header_list(name: &str, headers: &HeaderMap) -> Option<Vec
}
// Step 2
- return Some(values.collect::<Vec<&[u8]>>().join(&[0x2C, 0x20][..]));
+ Some(values.collect::<Vec<&[u8]>>().join(&[0x2C, 0x20][..]))
}