Skip to content

Commit

Permalink
Merge pull request #1994 from bellmyer/fix-typo
Browse files Browse the repository at this point in the history
Fix typo in README
  • Loading branch information
dblock committed Feb 21, 2020
2 parents bfb4da5 + edc718f commit 30e71e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@
* Your contribution here.

#### Fixes
* [#1994](https://github.com/ruby-grape/grape/pull/1993): Fix typos in README - [@bellmyer](https://github.com/bellmyer).
* [#1993](https://github.com/ruby-grape/grape/pull/1993): Lazy join allow header - [@ericproulx](https://github.com/ericproulx).
* [#1987](https://github.com/ruby-grape/grape/pull/1987): Re-add exactly_one_of mutually exclusive error message - [@ZeroInputCtrl](https://github.com/ZeroInputCtrl).
* [#1977](https://github.com/ruby-grape/grape/pull/1977): Skip validation for a file if it is optional and nil - [@dnesteryuk](https://github.com/dnesteryuk).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -1723,7 +1723,7 @@ params do
end
```

Every validation will have it's own instance of the validator, which means that the validator can have a state.
Every validation will have its own instance of the validator, which means that the validator can have a state.

### Validation Errors

Expand Down Expand Up @@ -3302,7 +3302,7 @@ end

Blocks can be executed before or after every API call, using `before`, `after`,
`before_validation` and `after_validation`.
If the API fails the `after` call will not be trigered, if you need code to execute for sure
If the API fails the `after` call will not be triggered, if you need code to execute for sure
use the `finally`.

Before and after callbacks execute in the following order:
Expand Down

0 comments on commit 30e71e5

Please sign in to comment.