diff options
Diffstat (limited to 'components/script/dom/navigator.rs')
-rw-r--r-- | components/script/dom/navigator.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/navigator.rs b/components/script/dom/navigator.rs index b2a4fa81b3b..ce97c30ae60 100644 --- a/components/script/dom/navigator.rs +++ b/components/script/dom/navigator.rs @@ -103,7 +103,7 @@ impl NavigatorMethods for Navigator { false } - // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/#navigator-service-worker-attribute + // https://w3c.github.io/ServiceWorker/#navigator-service-worker-attribute fn ServiceWorker(&self) -> Root<ServiceWorkerContainer> { self.service_worker.or_init(|| ServiceWorkerContainer::new(self.global().r())) } |