diff --git a/README.md b/README.md index f6a5ae94..d7a61be6 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ For the creation of [RFC4122](https://www.ietf.org/rfc/rfc4122.txt) UUIDs > **Note** Upgrading from `uuid@3`? Your code is probably okay, but check out [Upgrading From `uuid@3`](#upgrading-from-uuid3) for details. -> **Note** Only interested in creating a version 4 UUID? You might be able to use [`cypto.randomUUID()`](https://developer.mozilla.org/en-US/docs/Web/API/Crypto/randomUUID), eliminating the need to install this library. +> **Note** Only interested in creating a version 4 UUID? You might be able to use [`crypto.randomUUID()`](https://developer.mozilla.org/en-US/docs/Web/API/Crypto/randomUUID), eliminating the need to install this library. ## Quickstart diff --git a/README_js.md b/README_js.md index 4572c575..eecb7973 100644 --- a/README_js.md +++ b/README_js.md @@ -34,7 +34,7 @@ For the creation of [RFC4122](https://www.ietf.org/rfc/rfc4122.txt) UUIDs > **Note** Upgrading from `uuid@3`? Your code is probably okay, but check out [Upgrading From `uuid@3`](#upgrading-from-uuid3) for details. -> **Note** Only interested in creating a version 4 UUID? You might be able to use [`cypto.randomUUID()`](https://developer.mozilla.org/en-US/docs/Web/API/Crypto/randomUUID), eliminating the need to install this library. +> **Note** Only interested in creating a version 4 UUID? You might be able to use [`crypto.randomUUID()`](https://developer.mozilla.org/en-US/docs/Web/API/Crypto/randomUUID), eliminating the need to install this library. ## Quickstart diff --git a/test/unit/parse.test.js b/test/unit/parse.test.js index 1b6ad359..a2d47933 100644 --- a/test/unit/parse.test.js +++ b/test/unit/parse.test.js @@ -4,7 +4,7 @@ import parse from '../../src/parse.js'; import stringify from '../../src/stringify.js'; import gen from 'random-seed'; -// Use deterministic PRNG for reproducable tests +// Use deterministic PRNG for reproducible tests const rand = gen.create('He who wonders discovers that this in itself is wonder.'); function rng(bytes = []) { for (let i = 0; i < 16; i++) {