aboutsummaryrefslogtreecommitdiffstats
path: root/components/shared/net/request.rs
diff options
context:
space:
mode:
authorAarya Khandelwal <119049564+Aaryakhandelwal@users.noreply.github.com>2024-03-08 17:58:06 +0530
committerGitHub <noreply@github.com>2024-03-08 12:28:06 +0000
commitdd6c929cc6baaea4a385c8c2cc5dc5f3236e8c06 (patch)
tree83c720b9f62d7b03b7d59fb257a0e03982a53864 /components/shared/net/request.rs
parent6b5a5147f8ce927fc8765e0ab5b447faa8744cd4 (diff)
downloadservo-dd6c929cc6baaea4a385c8c2cc5dc5f3236e8c06.tar.gz
servo-dd6c929cc6baaea4a385c8c2cc5dc5f3236e8c06.zip
Fix rustdoc errors in `components/shared` (#31582)
* Fixed error in documentation in components>shared>embedder>lib.rs * fixed documentation warning in compoenents>shared>net>request.rs * Fixed the documentation (URL issue) in components>shared>script>lib.rs
Diffstat (limited to 'components/shared/net/request.rs')
-rw-r--r--components/shared/net/request.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/shared/net/request.rs b/components/shared/net/request.rs
index b1aa5fd0f04..f3fb7362c58 100644
--- a/components/shared/net/request.rs
+++ b/components/shared/net/request.rs
@@ -186,7 +186,7 @@ impl RequestBody {
}
}
- /// Step 12 of https://fetch.spec.whatwg.org/#concept-http-redirect-fetch
+ /// Step 12 of <https://fetch.spec.whatwg.org/#concept-http-redirect-fetch>
pub fn extract_source(&mut self) {
match self.source {
BodySource::Null => panic!("Null sources should never be re-directed."),