1
0
Fork 0
mirror of https://github.com/varvet/pundit.git synced 2022-11-09 12:30:11 -05:00

Fix typo in spec example section of README

This commit is contained in:
Patrick Van Stee 2013-04-12 16:48:27 -03:00
parent 74eb88c3ad
commit 7193302ee9

View file

@ -294,7 +294,7 @@ describe PostPolicy do
should permit(User.new(:admin => true), Post.new(:published => true))
end
it "grands access if post is unpublished" do
it "grants access if post is unpublished" do
should permit(User.new(:admin => false), Post.new(:published => false))
end
end