diff --git a/index.html b/index.html index f73048a..a09800f 100644 --- a/index.html +++ b/index.html @@ -40,9 +40,9 @@

This specification describes an API for generating character encoded Universally Unique Identifiers (UUID) based on [[RFC4122]], available - as a global method on Window - and WorkerGlobalScope - objects. + as a method on the + Crypto + interface.

@@ -85,14 +85,15 @@

Developers "re-inventing the wheel" is potentially harmful

Description

-
-

Extensions to the WindowOrWorkerGlobalScope interface

+
+

Extensions to the Crypto interface

- This document extends the WindowOrWorkerGlobalScope - interface defined by [[!HTML]]. + The Crypto interface is + defined in [[!WebCryptoAPI]].

-        partial interface mixin WindowOrWorkerGlobalScope {
+        [Exposed=(Window,Worker)]
+        partial interface Crypto {
           DOMString randomUUID();
         };