Skip to content

Commit 3bbbc07

Browse files
authored
Update README.md (#2)
Use correct name of library Signed-off-by: Jon N <[email protected]>
1 parent 8f46867 commit 3bbbc07

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# @fastify/merge-json-schema
1+
# @fastify/merge-json-schemas
22

3-
__merge-json-schema__ is a javascript library that build a logical product (AND) for multiple [JSON schemas](https://json-schema.org/draft/2020-12/json-schema-core#name-introduction).
3+
__merge-json-schemas__ is a javascript library that build a logical product (AND) for multiple [JSON schemas](https://json-schema.org/draft/2020-12/json-schema-core#name-introduction).
44

55
- [Installation](#installation)
66
- [Usage](#usage)
@@ -15,7 +15,7 @@ __merge-json-schema__ is a javascript library that build a logical product (AND)
1515
## Installation
1616

1717
```bash
18-
npm install @fastify/merge-json-schema
18+
npm install @fastify/merge-json-schemas
1919
```
2020

2121
<a name="usage"></a>
@@ -24,7 +24,7 @@ npm install @fastify/merge-json-schema
2424

2525
```javascript
2626
const assert = require('node:assert')
27-
const { mergeSchemas } = require('merge-json-schema')
27+
const { mergeSchemas } = require('@fastify/merge-json-schemas');
2828

2929
const schema1 = {
3030
$id: 'schema1',

0 commit comments

Comments
 (0)