From 85f45ba667b133009cabbfc95d955bd66eec78a3 Mon Sep 17 00:00:00 2001 From: Wojciech Mach Date: Mon, 8 Apr 2013 21:51:35 -0400 Subject: [PATCH] Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ad4081..55c484a 100644 --- a/README.md +++ b/README.md @@ -191,7 +191,7 @@ You can, and are encouraged to, use this method in views: ``` erb <% policy_scope(@user.posts).each do |post| %> -

<% link_to @post.title, post_path(post) %>

+

<% link_to post.title, post_path(post) %>

<% end %> ```