Skip to content

Commit

Permalink
Merge pull request expressjs#37 from ScottBouloutian/patch-1
Browse files Browse the repository at this point in the history
readme: fix example typos
  • Loading branch information
Fishrock123 committed Jun 13, 2014
2 parents 7502fca + 9b3688c commit f840a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ onFilesLimit: function () {
Event handler triggered when the number of fields exceed the specification in the `limit` object. No more fields will be parsed after the limit is reached.

```js
onFilesLimit: function () {
onFieldsLimit: function () {
console.log('Crossed fields limit!')
}
```
Expand All @@ -203,7 +203,7 @@ onFilesLimit: function () {
Event handler triggered when the number of parts exceed the specification in the `limit` object. No more files or fields will be parsed after the limit is reached.

```js
onFilesLimit: function () {
onPartsLimit: function () {
console.log('Crossed parts limit!')
}
```
Expand Down

0 comments on commit f840a51

Please sign in to comment.