Skip to content

Commit

Permalink
docs(readme): minor grammatical fixes (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Apr 12, 2021
1 parent bbb6eef commit 29e2e8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -399,7 +399,7 @@ console.log(stringify({
})) // {"kind":"foobar","foo":"FOO","bar":42}
```

**NB:** don't declare the properties twice or you'll print them twice!
**NB** Do not declare the properties twice or you will print them twice!

<a name="ref"></a>
#### Reuse - $ref
Expand Down Expand Up @@ -514,7 +514,7 @@ const stringify = fastJson(schema, { schema: externalSchema })

<a name="long"></a>
#### Long integers
By default the library will handle automatically [BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) from Node.js v10.3 and above.
By default the library will automatically handle [BigInt](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) from Node.js v10.3 and above.
If you can't use BigInts in your environment, long integers (64-bit) are also supported using the [long](https://github.com/dcodeIO/long.js) module.
Example:
```javascript
Expand Down

0 comments on commit 29e2e8e

Please sign in to comment.