fix delagate w/ prefix

This commit is contained in:
mikegee 2013-01-21 18:36:13 -05:00
parent 0efa0403c2
commit fb028c3000
1 changed files with 2 additions and 1 deletions

View File

@ -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`
```