Skip to content

Commit 552af82

Browse files
author
Miyake J Takuma
committed
Fix typos
1 parent 26e4919 commit 552af82

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
#### Fixes
88

99
* Your contribution here.
10+
* [#2137](https://github.com/ruby-grape/grape/pull/2137): Fix typos - [@johnny-miyake](https://github.com/johnny-miyake).
1011
* [#2131](https://github.com/ruby-grape/grape/pull/2131): Fix Ruby 2.7 keyword deprecation warning in validators/coerce - [@K0H205](https://github.com/K0H205).
1112
* [#2132](https://github.com/ruby-grape/grape/pull/2132): Use #ruby2_keywords for correct delegation on Ruby <= 2.6, 2.7 and 3 - [@eregon](https://github.com/eregon).
1213

spec/grape/validations_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ def validate_param!(attr_name, params)
921921
expect(last_response.status).to eq(200)
922922
end
923923

924-
it "simplest example using Arry -> Array -> Hash -> String" do
924+
it "simplest example using Array -> Array -> Hash -> String" do
925925
subject.params do
926926
requires :orders, type: Array do
927927
requires :id, type: Integer
@@ -947,7 +947,7 @@ def validate_param!(attr_name, params)
947947
expect(last_response.status).to eq(200)
948948
end
949949

950-
it "simplest example using Arry -> Hash -> String" do
950+
it "simplest example using Array -> Hash -> String" do
951951
subject.params do
952952
requires :orders, type: Array do
953953
requires :id, type: Integer

0 commit comments

Comments
 (0)