From efc3683cc7ceff0cd8c8528a168a78d42fb1a0e8 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Tue, 17 Oct 2017 09:39:20 -0700 Subject: Fix commonmark Markdown warnings in docs, part 1 Fixes warnings from rust-lang/rust#44229 when `--enable-commonmark` is passed to rustdoc. This is mostly a global find-and-replace for bare URIs on lines by themselves in doc comments. --- components/script/microtask.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/script/microtask.rs') diff --git a/components/script/microtask.rs b/components/script/microtask.rs index f0ec5d44ae5..7560d97d883 100644 --- a/components/script/microtask.rs +++ b/components/script/microtask.rs @@ -25,7 +25,7 @@ use std::rc::Rc; pub struct MicrotaskQueue { /// The list of enqueued microtasks that will be invoked at the next microtask checkpoint. microtask_queue: DomRefCell>, - /// https://html.spec.whatwg.org/multipage/#performing-a-microtask-checkpoint + /// performing_a_microtask_checkpoint: Cell, } @@ -57,7 +57,7 @@ impl MicrotaskQueue { self.microtask_queue.borrow_mut().push(job); } - /// https://html.spec.whatwg.org/multipage/#perform-a-microtask-checkpoint + /// /// Perform a microtask checkpoint, executing all queued microtasks until the queue is empty. pub fn checkpoint(&self, target_provider: F) where F: Fn(PipelineId) -> Option> -- cgit v1.2.3