Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
j-miyake committed Dec 1, 2020
1 parent 26e4919 commit 1faf634
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/grape/validations_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ def validate_param!(attr_name, params)
expect(last_response.status).to eq(200)
end

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

it "simplest example using Arry -> Hash -> String" do
it "simplest example using Array -> Hash -> String" do
subject.params do
requires :orders, type: Array do
requires :id, type: Integer
Expand Down

0 comments on commit 1faf634

Please sign in to comment.