From 12154ba57a0cd6a0a4fd6a36b581f2b9d2a52893 Mon Sep 17 00:00:00 2001 From: Alex Rock Ancelet Date: Wed, 12 Apr 2017 18:23:47 +0200 Subject: [PATCH] Fix readme typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c7ef70c..5397dc0 100644 --- a/README.md +++ b/README.md @@ -96,5 +96,5 @@ permissions: ADMIN: 'user.isAdmin()' EDIT_POST: supports: 'instanceof(user, user_class) and instanceof(subject, post_class)' - on_vote: 'user.isAdmin() and post.getAuthor().getId() === user.getId()' + on_vote: 'user.isAdmin() and subject.getAuthor().getId() === user.getId()' ```