diff options
Diffstat (limited to 'components/script/dom/storage.rs')
-rw-r--r-- | components/script/dom/storage.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/storage.rs b/components/script/dom/storage.rs index 9ec49555c9c..13871b43c29 100644 --- a/components/script/dom/storage.rs +++ b/components/script/dom/storage.rs @@ -133,7 +133,7 @@ trait PrivateStorageHelpers { } impl<'a> PrivateStorageHelpers for JSRef<'a, Storage> { - /// https://html.spec.whatwg.org/multipage/webstorage.html#send-a-storage-notification + /// https://html.spec.whatwg.org/multipage/#send-a-storage-notification fn broadcast_change_notification(self, key: Option<DOMString>, old_value: Option<DOMString>, new_value: Option<DOMString>){ let global_root = self.global.root(); |