Skip to content

Commit

Permalink
Fix spelling in spec/std/uri/params_spec.cr
Browse files Browse the repository at this point in the history
  • Loading branch information
jbampton committed Feb 17, 2024
1 parent c0270c6 commit 2b9cba2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/std/uri/params_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ class URI
end

describe "#merge!" do
it "modifies the reciever" do
it "modifies the receiver" do
params = Params.parse("foo=bar&foo=baz&qux=zoo")
other_params = Params.parse("foo=buzz&foo=extra")

Expand Down Expand Up @@ -364,7 +364,7 @@ class URI
params.merge(other_params, replace: false).to_s.should eq("foo=bar&foo=baz&foo=buzz&foo=extra&qux=zoo")
end

it "does not modify the reciever" do
it "does not modify the receiver" do
params = Params.parse("foo=bar&foo=baz&qux=zoo")
other_params = Params.parse("foo=buzz&foo=extra")

Expand Down

0 comments on commit 2b9cba2

Please sign in to comment.