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

Fix typo in README

This commit is contained in:
Wojciech Mach 2013-04-08 21:51:35 -04:00
parent 12292f151f
commit 85f45ba667

View file

@ -191,7 +191,7 @@ You can, and are encouraged to, use this method in views:
``` erb
<% policy_scope(@user.posts).each do |post| %>
<p><% link_to @post.title, post_path(post) %></p>
<p><% link_to post.title, post_path(post) %></p>
<% end %>
```