aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/performance.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/performance.rs')
-rw-r--r--components/script/dom/performance.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/performance.rs b/components/script/dom/performance.rs
index f65cd35288d..cb773c06e22 100644
--- a/components/script/dom/performance.rs
+++ b/components/script/dom/performance.rs
@@ -199,7 +199,7 @@ impl Performance {
/// notify the observers if no other notification task is already queued.
///
/// Algorithm spec:
- /// https://w3c.github.io/performance-timeline/#queue-a-performanceentry
+ /// <https://w3c.github.io/performance-timeline/#queue-a-performanceentry>
pub fn queue_entry(&self, entry: &PerformanceEntry,
add_to_performance_entries_buffer: bool) {
// Steps 1-3.
@@ -233,7 +233,7 @@ impl Performance {
/// Observers notifications task.
///
/// Algorithm spec (step 7):
- /// https://w3c.github.io/performance-timeline/#queue-a-performanceentry
+ /// <https://w3c.github.io/performance-timeline/#queue-a-performanceentry>
pub fn notify_observers(&self) {
// Step 7.1.
self.pending_notification_observers_task.set(false);