Skip to content

Commit

Permalink
chore: minor typos in non-code areas (#702)
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Mar 22, 2023
1 parent 8f028c4 commit e6b0c90
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README_js.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion test/unit/parse.test.js
Expand Up @@ -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++) {
Expand Down

0 comments on commit e6b0c90

Please sign in to comment.