diff options
Diffstat (limited to 'components/shared/net/response.rs')
-rw-r--r-- | components/shared/net/response.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/shared/net/response.rs b/components/shared/net/response.rs index 552c0057c50..15b8e53aa8b 100644 --- a/components/shared/net/response.rs +++ b/components/shared/net/response.rs @@ -116,7 +116,7 @@ pub struct Response { pub internal_response: Option<Box<Response>>, /// whether or not to try to return the internal_response when asked for actual_response pub return_internal: bool, - /// https://fetch.spec.whatwg.org/#concept-response-aborted + /// <https://fetch.spec.whatwg.org/#concept-response-aborted> #[ignore_malloc_size_of = "AtomicBool heap size undefined"] pub aborted: Arc<AtomicBool>, /// track network metrics |