Skip to content

Commit

Permalink
Merge pull request #1 from holamendi/patch-1
Browse files Browse the repository at this point in the history
Fix typo in README.md
  • Loading branch information
palkan committed Mar 16, 2023
2 parents 93c1e36 + e2a0104 commit 662eb51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Consider an example:
let(:array_double) { instance_double("Array") }

specify "#take" do
allow(array_double).to receve(:take).and_return([1, 2, 3])
allow(array_double).to receive(:take).and_return([1, 2, 3])

expect(array_double.take("three")).to eq([1, 2, 3])
end
Expand Down

0 comments on commit 662eb51

Please sign in to comment.