Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: package import name fix #74

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export.before = {
};
```

(2) Errors are returned in a
(2) Errors are returned in a
[Mongoose format.](https://github.com/eddyystop/joi-errors-for-forms#code-examples)

```js
Expand Down Expand Up @@ -110,7 +110,7 @@ export.before = {
The `validateProvidedData` hook is just like `validate.form`, but it only validates the attributes from the schema which are actually present in the request's `data` object. In short, it allows partial validation of the schema attributes. Using it as a hook looks like this:

```js
const validate = require('@featehrs-plus/validate-joi')
const validate = require('feathers-validate-joi')
const attrs = require('./faqs.model')

const hooks = {
Expand Down