From fb028c30009ff280c8a39307b605ed3fab90c345 Mon Sep 17 00:00:00 2001 From: mikegee Date: Mon, 21 Jan 2013 18:36:13 -0500 Subject: [PATCH] fix delagate w/ prefix --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 515e435..97178a8 100644 --- a/README.md +++ b/README.md @@ -328,7 +328,8 @@ From your view template, assuming `@article` is decorated, you could do any of t ```ruby @article.title # Returns the article's `.title` -@article.name # Returns the article's `author.name` +@article.body # Returns the article's `.body` +@article.author_name # Returns the article's `author.name` @article.author_title # Returns the article's `author.title` ```