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

Typo fix and writing style touch-up #16

Merged
merged 1 commit into from Dec 18, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions config/bodyParser.js
Expand Up @@ -27,8 +27,8 @@ module.exports = {
| strict
|--------------------------------------------------------------------------
|
| When `scrict` is set to true, body parser will only parse Arrays and
| Object. Otherwise everything parseable by `JSON.parse` is parsed.
| When `strict` is set to true, body parser will only parse Arrays and
| Object. Otherwise everything parsable by `JSON.parse` is parsed.
|
*/
strict: true,
Expand All @@ -39,7 +39,7 @@ module.exports = {
|--------------------------------------------------------------------------
|
| Which content types are processed as JSON payloads. You are free to
| add your own types here, but the request body should be parseable
| add your own types here, but the request body should be parsable
| by `JSON.parse` method.
|
*/
Expand Down Expand Up @@ -119,7 +119,7 @@ module.exports = {
| manually process the files when required.
|
| This value can contain a boolean or an array of route patterns
| to be autoprocessed.
| to be auto-processed.
*/
autoProcess: true,

Expand All @@ -143,7 +143,7 @@ module.exports = {
| Define a function, which should return a string to be used as the
| tmp file name.
|
| If not defined, Bodyparser will use `uuid` as the tmp file name.
| If not defined, BodyParser will use `uuid` as the tmp file name.
|
| To be defined as. If you are defining the function, then do make sure
| to return a value from it.
Expand Down