diff options
Diffstat (limited to 'components/script/dom/htmllinkelement.rs')
-rw-r--r-- | components/script/dom/htmllinkelement.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmllinkelement.rs b/components/script/dom/htmllinkelement.rs index 78eee6afb5f..2b842d6c20a 100644 --- a/components/script/dom/htmllinkelement.rs +++ b/components/script/dom/htmllinkelement.rs @@ -133,7 +133,7 @@ impl<'a> PrivateHTMLLinkElementHelpers for JSRef<'a, HTMLLinkElement> { let LayoutChan(ref layout_chan) = window.page().layout_chan; layout_chan.send(Msg::LoadStylesheet(url)); } - Err(e) => debug!("Parsing url {:s} failed: {}", href, e) + Err(e) => debug!("Parsing url {} failed: {}", href, e) } } } |