Skip to content

Commit

Permalink
"Out-of-the-box" => "out of the box"
Browse files Browse the repository at this point in the history
  • Loading branch information
jstayton committed Oct 22, 2020
1 parent d7c78e5 commit ef4350b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ It's up to you.

The code behind queriers that maps calls to a query builder / ORM is called an
_adapter_. At this point, the only officially supported adapter is for
[Knex](https://knexjs.org/) – which is the default adapter out-of-the-box – but
[Knex](https://knexjs.org/) – which is the default adapter out of the box – but
anyone can build their own adapter.

### Defining a Querier
Expand Down Expand Up @@ -489,7 +489,7 @@ ensuring that a `status` filter is only the string `open` or `closed`, or that
page `size` isn't greater than `100`. It's also recommended to prevent invalid
values from reaching your database and causing query errors.

QueryQL provides validation out-of-the-box with
QueryQL provides validation out of the box with
[Joi](https://github.com/hapijs/joi), although anyone can build their own
validator to use a validation library they're more familiar with.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ QueryQL works with any Node.js web framework (be it Express, Koa, etc.),
supports any query builder / ORM through _adapters_, and allows for custom
_validators_ so you can define validation in a familiar way.

Out-of-the-box, QueryQL supports the following:
Out of the box, QueryQL supports the following:

- Adapter: [Knex](https://knexjs.org/) (works with
[Objection.js](https://vincit.github.io/objection.js) and other ORMs that use
Expand Down

0 comments on commit ef4350b

Please sign in to comment.