Skip to content

Commit

Permalink
Fix incorrect description of maxFieldsSize
Browse files Browse the repository at this point in the history
  • Loading branch information
iliakan committed Nov 7, 2014
1 parent 302a7af commit fbc6416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Either 'multipart' or 'urlencoded' depending on the incoming request.
```javascript
form.maxFieldsSize = 2 * 1024 * 1024;
```
Limits the amount of memory a field (not file) can allocate in bytes.
Limits the amount of memory all fields together (except files) can allocate in bytes.
If this value is exceeded, an `'error'` event is emitted. The default
size is 2MB.

Expand Down

0 comments on commit fbc6416

Please sign in to comment.