From 072db0279aab898fd2f7af263cfbf9ea5a1ea6c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Fri, 16 Dec 2016 15:20:28 +0100 Subject: [PATCH] script: Clarify htmllinkelement's comment about `pending_loads`. --- components/script/dom/htmllinkelement.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/script/dom/htmllinkelement.rs b/components/script/dom/htmllinkelement.rs index 1af4efd3e65..298fb5a8c94 100644 --- a/components/script/dom/htmllinkelement.rs +++ b/components/script/dom/htmllinkelement.rs @@ -45,7 +45,7 @@ pub struct HTMLLinkElement { /// https://html.spec.whatwg.org/multipage/#a-style-sheet-that-is-blocking-scripts parser_inserted: Cell, /// The number of loads that this link element has triggered (could be more - /// than one because of imports), and how many of them have finished. + /// than one because of imports) and have not yet finished. pending_loads: Cell, /// Whether any of the loads have failed. any_failed_load: Cell,