Skip to content

Commit

Permalink
Fix grammatical typo in managing-schemas.md (#2305)
Browse files Browse the repository at this point in the history
"there is many" -> "there are many"

Co-authored-by: Jason Ian Green <jasoniangreen@users.noreply.github.com>
  • Loading branch information
wetneb and jasoniangreen committed Jun 19, 2024
1 parent 603f63b commit 650c7f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/guide/managing-schemas.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ In the example above, the key passed to the `addSchema` method was used to retri

### Pre-adding all schemas vs adding on demand

In the example above all schemas were added in advance. It is also possible, to add schemas as they are used - it can be helpful if there is many schemas. In this case, you need to check first whether the schema is already added by calling `getSchema` method - it would return `undefined` if not:
In the example above all schemas were added in advance. It is also possible, to add schemas as they are used - it can be helpful if there are many schemas. In this case, you need to check first whether the schema is already added by calling `getSchema` method - it would return `undefined` if not:

```javascript
const schema_user = require("./schema_user.json")
Expand Down

0 comments on commit 650c7f6

Please sign in to comment.