Skip to content

Commit 30e71e5

Browse files
authored
Merge pull request #1994 from bellmyer/fix-typo
Fix typo in README
2 parents bfb4da5 + edc718f commit 30e71e5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Your contribution here.
66

77
#### Fixes
8+
* [#1994](https://github.com/ruby-grape/grape/pull/1993): Fix typos in README - [@bellmyer](https://github.com/bellmyer).
89
* [#1993](https://github.com/ruby-grape/grape/pull/1993): Lazy join allow header - [@ericproulx](https://github.com/ericproulx).
910
* [#1987](https://github.com/ruby-grape/grape/pull/1987): Re-add exactly_one_of mutually exclusive error message - [@ZeroInputCtrl](https://github.com/ZeroInputCtrl).
1011
* [#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).

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1723,7 +1723,7 @@ params do
17231723
end
17241724
```
17251725

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

17281728
### Validation Errors
17291729

@@ -3302,7 +3302,7 @@ end
33023302

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

33083308
Before and after callbacks execute in the following order:

0 commit comments

Comments
 (0)